From: Rotem Liss Date: Sun, 14 Sep 2008 14:34:12 +0000 (+0000) Subject: Localization: Keep date as the first parameter, before time. English localization... X-Git-Tag: 1.31.0-rc.0~45310 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/?a=commitdiff_plain;h=f9ed7d570fc72ca55d32081509cb19836b0bf7a4;p=lhc%2Fweb%2Fwiklou.git Localization: Keep date as the first parameter, before time. English localization assumes so, too. --- 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 ) );