From: Ævar Arnfjörð Bjarmason Date: Fri, 8 Apr 2005 18:14:08 +0000 (+0000) Subject: * Using wfTimestampNow() instead of wfTimestamp( TS_MW ) X-Git-Tag: 1.5.0alpha1~342 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=d56c91cdf56123c26dea07706ef042f89615a411;p=lhc%2Fweb%2Fwiklou.git * Using wfTimestampNow() instead of wfTimestamp( TS_MW ) --- diff --git a/includes/SpecialNewimages.php b/includes/SpecialNewimages.php index 55b43f6e10..43a401cb3f 100644 --- a/includes/SpecialNewimages.php +++ b/includes/SpecialNewimages.php @@ -118,7 +118,7 @@ function wfSpecialNewimages() { /** * Paging controls... */ - $now = wfTimestamp( TS_MW ); + $now = wfTimestampNow(); $date = $wgLang->timeanddate( $now ); $dateLink = $sk->makeKnownLinkObj( $titleObj, wfMsg( 'rclistfrom', $date ), 'from=' . $now );