trigger_error('Tidypics warning: image memory size too large for resizing so rejecting', E_USER_WARNING);
throw new Exception(elgg_echo('tidypics:image_pixels'));
}
+
+ // make sure file fits quota
+ if (!tp_upload_check_quota($data['size'], elgg_get_logged_in_user_guid())) {
+ throw new Exception(elgg_echo('tidypics:cannot_upload_exceeds_quota'));
+ }
}
/**
'image:downloadfailed' => "Sorry; this image is not available.",
'tidypics:nosettings' => "Admin of this site has not set photo album settings.",
'tidypics:exceed_quota' => "You have exceeded the quota set by the administrator",
+ 'tidypics:cannot_upload_exceeds_quota' => 'Image not uploaded. File size exceeds available quota.',
'images:notedited' => "Not all images were successfully updated",
'album:none' => "No albums have been created yet.",
'album:uploadfailed' => "Sorry; we could not save your album.",