wp_nonce_ays() HTML fixes from DD32. fixes #6270

git-svn-id: http://svn.automattic.com/wordpress/trunk@7395 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2008-03-19 06:04:45 +00:00
parent 0ebd2b681a
commit f704e592a9
1 changed files with 3 additions and 6 deletions

View File

@ -1337,14 +1337,11 @@ function wp_explain_nonce( $action ) {
function wp_nonce_ays( $action ) {
global $pagenow;
$title = __( 'WordPress Failure Notice' );
$html .= "\t<div id='message' class='updated fade'>\n\t<p>" . wp_specialchars( wp_explain_nonce( $action ) ) . "</p>\n\t<p>";
$html = wp_specialchars( wp_explain_nonce( $action ) ) . '</p>';
if ( wp_get_referer() )
$html .= "<a href='" . remove_query_arg( 'updated', clean_url( wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>";
$html .= "</p>\n\t</div>\n";
$html .= "</body>\n</html>";
wp_die( $html, $title );
$html .= "<p><a href='" . remove_query_arg( 'updated', clean_url( wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>";
wp_die( $html, $title);
}