From 8822f049a39faefeab10aee09d49c15c81709bf9 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 22 Apr 2009 21:08:19 +0000 Subject: [PATCH] Fix wp_nonce_ays() go back link. fixes #7436 git-svn-id: https://develop.svn.wordpress.org/trunk@11059 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index d9de8279d4..a7df7254ce 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2318,7 +2318,7 @@ function wp_nonce_ays( $action ) { $title = __( 'WordPress Failure Notice' ); $html = wp_specialchars( wp_explain_nonce( $action ) ); if ( wp_get_referer() ) - $html .= "

" . __( 'Please try again.' ) . ""; + $html .= "

" . __( 'Please try again.' ) . ""; elseif ( 'log-out' == $action ) $html .= "

" . sprintf( __( "Do you really want to log out?"), wp_logout_url() );