diff --git a/include/class.forms.php b/include/class.forms.php
index 0e8f81b60ed21e60bcb1df5ec52709d65166ddf7..9fec2ec7d207117dea377711a7a148c30f94f01a 100644
--- a/include/class.forms.php
+++ b/include/class.forms.php
@@ -3675,8 +3675,9 @@ class FileUploadWidget extends Widget {
         // Add in newly added files not yet saved (if redisplaying after an
         // error)
         if ($new) {
-            $F = array_merge($F, AttachmentFile::objects()->filter(array(
-                'id__in' => array_keys($new)))->all());
+            $F = array_merge($F, AttachmentFile::objects()
+                ->filter(array('id__in' => array_keys($new)))
+                ->all());
         }
         foreach ($F as $file) {
             $files[] = array(
@@ -3730,33 +3731,18 @@ class FileUploadWidget extends Widget {
             return $ids;
         }
 
+        // Files uploaded here MUST have been uploaded by this user and
+        // identified in the session
+        //
         // If no value was sent, assume an empty list
         if (!($files = parent::getValue()))
             return array();
 
-        // Files uploaded here MUST have been uploaded by this user and
-        // identified in the session
-        if ($files = parent::getValue()) {
-            $allowed = array();
-            // Files already attached to the field are allowed
-            foreach ($this->field->getFiles() as $F) {
-                // FIXME: This will need special porting in v1.10
-                $allowed[$F->id] = 1;
-            }
-            // New files uploaded in this session are allowed
-            if (isset($_SESSION[':uploadedFiles'])) {
-                $allowed += $_SESSION[':uploadedFiles'];
-            }
-
-            // Canned attachments initiated by this session
-            if (isset($_SESSION[':cannedFiles']))
-               $allowed += $_SESSION[':cannedFiles'];
-
-            foreach ($files as $i=>$F) {
-                if (!isset($allowed[$F])) {
-                    unset($files[$i]);
-                }
-            }
+        $allowed = array();
+        // Files already attached to the field are allowed
+        foreach ($this->field->getFiles() as $F) {
+            // FIXME: This will need special porting in v1.10
+            $allowed[$F->id] = 1;
         }
 
         // New files uploaded in this session are allowed