Browse Source

Animated thumbnails fix

pull/40/head
Michael Save 12 years ago
parent
commit
d531487bad
  1. 3
      inc/image.php

3
inc/image.php

@ -48,6 +48,7 @@
}
$thumb = new $classname(false);
$thumb->src = $this->src;
$thumb->original_width = $this->size->width;
$thumb->original_height = $this->size->height;
@ -105,7 +106,7 @@
$this->init();
if($img !== false) {
$this->src = &$img->src;
$this->src = $img->src;
$this->from();
}
}

Loading…
Cancel
Save