thumb_create didn't return a tuple when creating a new thumb

This commit is contained in:
real_nowhereman 2008-02-22 10:23:43 +00:00
parent f5bd65f529
commit 3b3907d153

View File

@ -101,7 +101,7 @@ function plugin_thumb_create($fpath, $infos, $new_width, $new_height) {
imagejpeg($scaled, $thumbpath);
@chmod($thumbpath, 0777);
return $thumbpath;
return array($thumbpath, $new_width, $new_height);
}