From: Aaron Schulz Date: Sat, 13 Dec 2008 19:03:15 +0000 (+0000) Subject: *sigh* Forgot db->timestamp X-Git-Tag: 1.31.0-rc.0~43992 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=391ee3f5489ce79ac3c3e2e60d3b5d4b53b3cbfc;p=lhc%2Fweb%2Fwiklou.git *sigh* Forgot db->timestamp --- diff --git a/includes/filerepo/LocalFile.php b/includes/filerepo/LocalFile.php index bf81043ca2..f3cf90395f 100644 --- a/includes/filerepo/LocalFile.php +++ b/includes/filerepo/LocalFile.php @@ -635,7 +635,7 @@ class LocalFile extends File $conds[] = "oi_timestamp <= " . $dbr->addQuotes( $dbr->timestamp( $start ) ); } if( $end ) { - $conds[] = "oi_timestamp >= " . $dbr->addQuotes( $end ); + $conds[] = "oi_timestamp >= " . $dbr->addQuotes( $dbr->timestamp( $end ) ); } if( $limit ) { $opts['LIMIT'] = $limit;