diff --git a/ChangeLog b/ChangeLog
index b94e96289..233ec019c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -30,6 +30,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
+ [interface] Allow to create new table from navigation frame (in light mode).
+ rfe #1025696 [browse] Add direct download of binary fields.
- [browse] Properly display NULL value for BLOB.
+- rfe #1516803 [edit] Allow to set BLOB to/from NULL with ProtectBinary.
3.3.0.0 (not yet released)
+ rfe #2308632 [edit] Use hex for (var)binary fields,
diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php
index 731fe4191..bd34ae226 100644
--- a/libraries/tbl_replace_fields.inc.php
+++ b/libraries/tbl_replace_fields.inc.php
@@ -121,7 +121,7 @@ if (false !== $possibly_uploaded_val) {
// (if there is a value, we ignore the Null checkbox: this could
// be possible if Javascript is disabled in the browser)
if (isset($me_fields_null[$key])
- && $val == "''") {
+ && ($val == "''" || $val == '')) {
$val = 'NULL';
}
diff --git a/tbl_change.php b/tbl_change.php
index 63d5757f1..4cedd68de 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -597,41 +597,32 @@ foreach ($rows as $row_id => $vrow) {
}
echo ' />' . "\n";
- if (!(($cfg['ProtectBinary'] && $field['is_blob']) || ($cfg['ProtectBinary'] == 'all' && $field['is_binary']))) {
-
- echo ' ' . "\n";
- echo $onclick;
- } else {
- echo ' ' . "\n";
+ echo ' ' . "\n";
+ echo $onclick;
}
echo ' ' . "\n";