From 08ba7a001dd0ba2afcea62ffb87f327e5f55470d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Aug 2012 17:09:32 +0200 Subject: [PATCH] Fix syntax error. Change-Id: I76904b609dbc11d11d00bc375ae8587a4ef4848c --- includes/actions/HistoryAction.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/actions/HistoryAction.php b/includes/actions/HistoryAction.php index 89aca98695..c22c04bab7 100644 --- a/includes/actions/HistoryAction.php +++ b/includes/actions/HistoryAction.php @@ -308,8 +308,7 @@ class HistoryAction extends FormlessAction { $rev->getUserText(), $wgContLang->timeanddate( $rev->getTimestamp() ), $wgContLang->date( $rev->getTimestamp() ), - $wgContLang->time( $rev->getTimestamp() )->inContentLanguage()->text() - ); + $wgContLang->time( $rev->getTimestamp() ) )->inContentLanguage()->text(); } else { $title = $rev->getUserText() . wfMessage( 'colon-separator' )->inContentLanguage()->text() . -- 2.20.1