From ec3476720ee5e7e0e72703d8700c2c595b9c2b59 Mon Sep 17 00:00:00 2001
From: westi <westi@1a063a9b-81f0-0310-95a4-ce76da25c4cd>
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 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? __('&laquo; Back') : '&laquo; Back';
-		$message .= "\n<p><a href='javascript:history.back()'>$back_text</p>";
+		$message .= "\n<p><a href='javascript:history.back()'>$back_text</a></p>";
 	}
 
 	if ( !function_exists( 'did_action' ) || !did_action( 'admin_head' ) ) :