From 8399b696d7660728535b85dbd90466f0e82e6fc8 Mon Sep 17 00:00:00 2001 From: donncha Date: Tue, 27 Feb 2007 11:07:37 +0000 Subject: WP Merge to 4952 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@902 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'wp-includes') diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 9155b9b..19eaa81 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -957,6 +957,7 @@ function bool_from_yn($yn) { function do_feed() { global $wp_query; + $feed = get_query_var('feed'); // Remove the pad, if present. @@ -1305,7 +1306,7 @@ function wp_nonce_ays($action) { $html .= "\t\t\n"; $html .= "\t\t
\n\t\t

" . wp_specialchars(wp_explain_nonce($action)) . "

\n\t\t

" . __('No') . "

\n\t\t
\n\t\n"; } else { - $html .= "\t
\n\t

" . wp_specialchars(wp_explain_nonce($action)) . "

\n\t

" . __('No') . " " . __('Yes') . "

\n\t
\n"; + $html .= "\t
\n\t

" . wp_specialchars(wp_explain_nonce($action)) . "

\n\t

" . __('No') . " " . __('Yes') . "

\n\t
\n"; } $html .= "\n"; wp_die($html, $title); -- cgit