Author: gebhkla
Description:
In Special:ListFiles the column Thumbnail is not showing the thumbnail, instead the name is shown. This is because the timestamp used as option for the method findFile uses a different format, than the method expects:
We fixed this behaviour by replacing line 409 in SpecialListfiles.php:
$opt = array( 'time' => $this->mCurrentRow->img_timestamp );
with:
$opt = array( 'time' => wfTimestamp( TS_MW, strtotime( $this->mCurrentRow->img_timestamp ) ) );
Version: 1.22.5
Severity: normal