Index: branches/5.2.x/core/units/helpers/file_helper.php =================================================================== diff -u -N -r13840 -r14092 --- branches/5.2.x/core/units/helpers/file_helper.php (.../file_helper.php) (revision 13840) +++ branches/5.2.x/core/units/helpers/file_helper.php (.../file_helper.php) (revision 14092) @@ -1,6 +1,6 @@ 'string', 'max_len' => 240, 'default' => '', - 'not_null' => 1, ); if ($is_image) { @@ -222,7 +221,7 @@ */ function _createCustomFields($prefix, $field_name, &$virtual_fields, $is_image) { - $virtual_fields['Delete' . $field_name] = Array ('type' => 'int', 'not_null' => 1, 'default' => 0); + $virtual_fields['Delete' . $field_name] = Array ('type' => 'int', 'default' => 0); if ($is_image) { $virtual_fields[$field_name . 'Alt'] = Array ('type' => 'string', 'default' => '');