diff options
Diffstat (limited to 'includes/filerepo/Image.php')
-rw-r--r-- | includes/filerepo/Image.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/filerepo/Image.php b/includes/filerepo/Image.php index 5207bb4b..08ce219a 100644 --- a/includes/filerepo/Image.php +++ b/includes/filerepo/Image.php @@ -19,7 +19,7 @@ class Image extends LocalFile { */ static function newFromTitle( $title, $time = false ) { wfDeprecated( __METHOD__ ); - $img = wfFindFile( $title, $time ); + $img = wfFindFile( $title, array( 'time' => $time ) ); if ( !$img ) { $img = wfLocalFile( $title ); } @@ -44,7 +44,7 @@ class Image extends LocalFile { } return $img; } else { - return NULL; + return null; } } |