-function incorrectly capitalized

This commit is contained in:
Martin Konecny 2012-03-01 12:15:58 -05:00
parent a9cdb512b9
commit d9967b9a77
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class Zend_Filter_ImageSize implements Zend_Filter_Interface {
throw new Zend_Filter_Exception('Image does not exist: ' . $value);
}
$image = imageCreateFromString(file_get_contents($value));
$image = imagecreatefromstring(file_get_contents($value));
if (false === $image) {
throw new Zend_Filter_Exception('Can\'t load image: ' . $value);
}