From ec3476720ee5e7e0e72703d8700c2c595b9c2b59 Mon Sep 17 00:00:00 2001 From: westi Date: Wed, 17 Aug 2011 10:54:48 +0000 Subject: [PATCH] Fix html for back link in _default_wp_die_handler. Fixes #18459 props tenpura. git-svn-id: http://svn.automattic.com/wordpress/trunk@18559 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 15fa1ef44..49bd56b30 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2808,7 +2808,7 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) { if ( isset( $r['back_link'] ) && $r['back_link'] ) { $back_text = $have_gettext? __('« Back') : '« Back'; - $message .= "\n

$back_text

"; + $message .= "\n

$back_text

"; } if ( !function_exists( 'did_action' ) || !did_action( 'admin_head' ) ) :