bug #3392920 [edit] BLOB emptied after editing another column

This commit is contained in:
Marc Delisle
2011-08-19 16:16:51 -04:00
parent da6e51d007
commit 29b694c225
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ phpMyAdmin - ChangeLog
- [core] Remove library PHPExcel, due to license issues - [core] Remove library PHPExcel, due to license issues
- [export] Remove native Excel export modules (xls and xlsx formats) - [export] Remove native Excel export modules (xls and xlsx formats)
- [import] Remove native Excel import modules (xls and xlsx formats) - [import] Remove native Excel import modules (xls and xlsx formats)
- bug #3392920 [edit] BLOB emptied after editing another column
3.4.4.0 (not yet released) 3.4.4.0 (not yet released)
- bug #3323060 [parser] SQL parser breaks AJAX requests if query has unclosed quotes - bug #3323060 [parser] SQL parser breaks AJAX requests if query has unclosed quotes

View File

@@ -110,7 +110,7 @@ if (false !== $possibly_uploaded_val) {
} }
// The Null checkbox was unchecked for this field // The Null checkbox was unchecked for this field
if (empty($val) && isset($me_fields_null_prev[$key]) && ! isset($me_fields_null[$key])) { if (empty($val) && ! empty($me_fields_null_prev[$key]) && ! isset($me_fields_null[$key])) {
$val = "''"; $val = "''";
} }
} // end else (field value in the form) } // end else (field value in the form)