From 1b3b0e211c7d26b9fb71d1474d0c6c04be2fb084 Mon Sep 17 00:00:00 2001 From: Peter Westwood 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: https://develop.svn.wordpress.org/trunk@18559 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 15fa1ef444..49bd56b30f 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' ) ) :