From: Platonides Date: Sun, 28 Nov 2010 22:27:50 +0000 (+0000) Subject: Follow up r77401. X-Git-Tag: 1.31.0-rc.0~33701 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=c8e8b4bfdbe2c5795fb66ae337713a49ba0ff7cb;p=lhc%2Fweb%2Fwiklou.git Follow up r77401. Mixture of null/false. Happens to also fix the parsertests issue. --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 07af8019c6..80093cabd4 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -2030,7 +2030,7 @@ function wfTimestamp( $outputtype = TS_UNIX, $ts = 0 ) { # Bogus value; fall back to the epoch... wfDebug("wfTimestamp() fed bogus time value: $outputtype; $ts\n"); - return null; + return false; }