r68328 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r68327
|
r68328
|
r68329
>
Date:
16:17, 20 June 2010
Author:
hartman
Status:
ok
Tags:
Comment:
Follow up to
r68324
. Fix undefined constant.
Modified paths:
/trunk/phase3/includes/media/PNG.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/media/PNG.php
—
—
@@ -58,7 +58,7 @@
59
59
$metadata = unserialize($image->getMetadata());
60
60
wfRestoreWarnings();
61
61
62
- if( !metadata || $metadata['frameCount'] == 0 )
62
+ if( !$metadata || $metadata['frameCount'] <= 0 )
63
63
return $original;
64
64
65
65
$info = array();
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r68324
Add a new PNG parser in order to recognize APNG (animated PNG) images.
hartman
16:09, 20 June 2010
Status & tagging log
10:17, 21 June 2010
Conrad.Irwin
(
talk
|
contribs
)
changed the
status
of r68328
[
removed:
new
added:
ok]