From f9ed7d570fc72ca55d32081509cb19836b0bf7a4 Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Sun, 14 Sep 2008 14:34:12 +0000 Subject: [PATCH] Localization: Keep date as the first parameter, before time. English localization assumes so, too. --- includes/specials/SpecialUndelete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialUndelete.php b/includes/specials/SpecialUndelete.php index 25a75f971e..597900984c 100644 --- a/includes/specials/SpecialUndelete.php +++ b/includes/specials/SpecialUndelete.php @@ -770,7 +770,7 @@ class UndeleteForm { $t = htmlspecialchars( $wgLang->time( $timestamp, true ) ); $user = $skin->revUserTools( $rev ); - $wgOut->addHtml( '

' . wfMsgHtml( 'undelete-revision', $link, $time, $user, $t, $d ) . '

' ); + $wgOut->addHtml( '

' . wfMsgHtml( 'undelete-revision', $link, $time, $user, $d, $t ) . '

' ); wfRunHooks( 'UndeleteShowRevision', array( $this->mTargetObj, $rev ) ); -- 2.20.1