Browse Source

small mistake in thumbnail animation. was trying to animate all formats (not just GIF).

pull/40/head
Michael Save 12 years ago
parent
commit
77c256157f
  1. 2
      inc/image.php

2
inc/image.php

@ -172,7 +172,7 @@
public function resize() {
global $config;
if($config['thumb_ext'] == 'gif') {
if(preg_match('/\.gif$/', $src)) {
$this->image = new Imagick();
$this->image->setFormat('gif');

Loading…
Cancel
Save