Browse Source

Don't animate thumbnails when impossible.

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

2
inc/image.php

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

Loading…
Cancel
Save