diff options
author | Ævar Arnfjörð Bjarmason <avar@users.mediawiki.org> | 2005-05-15 14:03:13 +0000 |
---|---|---|
committer | Ævar Arnfjörð Bjarmason <avar@users.mediawiki.org> | 2005-05-15 14:03:13 +0000 |
commit | 90ae95ee43b39f68d7ec593df9f0e2403c4278e0 (patch) | |
tree | bab3c7a12f244b6ee8bd72a6be42e63859cf266f /includes/Image.php | |
parent | 424cda1fb3927992d222e25adb16ee90e0091a27 (diff) | |
download | mediawikicore-90ae95ee43b39f68d7ec593df9f0e2403c4278e0.tar.gz mediawikicore-90ae95ee43b39f68d7ec593df9f0e2403c4278e0.zip |
* Using new icons in the /common/images/icons/ directory
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/9053
Diffstat (limited to 'includes/Image.php')
-rw-r--r-- | includes/Image.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Image.php b/includes/Image.php index a22ae0a0b171..ae28c721628f 100644 --- a/includes/Image.php +++ b/includes/Image.php @@ -637,7 +637,7 @@ class Image $try = array( 'fileicon-' . $this->extension . '.png', 'fileicon.png' ); foreach( $try as $icon ) { - $path = '/common/images/' . $icon; + $path = '/common/images/icons/' . $icon; $filepath = $wgStyleDirectory . $path; if( file_exists( $filepath ) ) { return new ThumbnailImage( $wgStylePath . $path, 120, 120 ); |