photo upload plugin size limit is not working, call photo_end hooks in any error return from mainline so html does not leak into json responses bug #77

This commit is contained in:
Friendika 2011-05-20 15:57:58 -07:00
parent 0abf2f11c6
commit db60d6d78f
1 changed files with 2 additions and 0 deletions

View File

@ -562,6 +562,7 @@ foreach($_FILES AS $key => $val) {
if(($maximagesize) && ($filesize > $maximagesize)) {
notice( t('Image exceeds size limit of ') . $maximagesize . EOL);
@unlink($src);
call_hooks('photo_post_end',0);
return;
}
@ -574,6 +575,7 @@ foreach($_FILES AS $key => $val) {
logger('mod/photos.php: photos_post(): unable to process image' , 'LOGGER_DEBUG');
notice( t('Unable to process image.') . EOL );
@unlink($src);
call_hooks('photo_post_end',0);
killme();
}