From: Brion Vibber Date: Sun, 21 Nov 2004 02:20:52 +0000 (+0000) Subject: Fix obsolete function call X-Git-Tag: 1.5.0alpha1~1295 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=2ceb2294d97a3d56ef4d5e6d8344e27aea0c1e2b;p=lhc%2Fweb%2Fwiklou.git Fix obsolete function call --- diff --git a/includes/CacheManager.php b/includes/CacheManager.php index e611737d5c..a79467dc0a 100644 --- a/includes/CacheManager.php +++ b/includes/CacheManager.php @@ -55,7 +55,7 @@ class CacheManager { } function fileCacheTime() { - return wfUnix2Timestamp( filemtime( $this->fileCacheName() ) ); + return wfTimestamp( MW_TS, filemtime( $this->fileCacheName() ) ); } function isFileCacheGood( $timestamp ) {