Return error when requesting invalid feed format. Props pishmishy. fixes #5446
git-svn-id: http://svn.automattic.com/wordpress/trunk@7038 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5f5694ee64
commit
4446c81177
|
@ -901,7 +901,12 @@ function do_feed() {
|
|||
$feed = get_default_feed();
|
||||
|
||||
$hook = 'do_feed_' . $feed;
|
||||
do_action( $hook, $wp_query->is_comment_feed );
|
||||
if ( !has_action($hook) ) {
|
||||
$message = sprintf( __( 'ERROR: %s is not a valid feed template' ), wp_specialchars($feed));
|
||||
wp_die($message);
|
||||
}
|
||||
|
||||
do_action( $hook, $wp_query->is_comment_feed );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue