From 68eb4a8aebeb47350620aa3f2e5020321029a01b Mon Sep 17 00:00:00 2001 From: Alex Z Date: Mon, 14 Sep 2009 02:17:31 +0000 Subject: [PATCH] Fixes for r56284: * Parse the message shown in the box * Fix undefined variable notice --- includes/LogEventsList.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/LogEventsList.php b/includes/LogEventsList.php index dfe6fa6aea..e7e4dbe84d 100644 --- a/includes/LogEventsList.php +++ b/includes/LogEventsList.php @@ -575,9 +575,10 @@ class LogEventsList { $pager = new LogPager( $loglist, $types, $user, $page, '', $conds ); if( $lim > 0 ) $pager->mLimit = $lim; $logBody = $pager->getBody(); + $s = ''; if( $logBody ) { if ( $msgKey ) - $s = '
' . wfMsg( $msgKey ) ; + $s = '
' . wfMsgExt( $msgKey, array('parse') ) ; $s .= $loglist->beginLogEventsList() . $logBody . $loglist->endLogEventsList(); -- 2.20.1