#1892 - Image attach from file store broken (merged from branches/2.2.0@45907, r45762)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@46113 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andrew O'Neil 2007-12-02 21:35:17 +00:00
parent cdf221bdde
commit 8f712a3392

View File

@ -625,7 +625,7 @@ class Image_Uploader extends Controller {
* Save the data in this form.
*/
function save($data, $form) {
if($data['Upload']['size'] == 0) {
if($data['ImageSource'] != 'existing' && $data['Upload']['size'] == 0) {
// No image has been uploaded
Director::redirectBack();
return;
@ -746,4 +746,4 @@ class Image_Uploader extends Controller {
}
}
?>
?>