diff --git a/ChangeLog b/ChangeLog index 78300b3bb..0565276b4 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-04-17 Michal Cihar + * tbl_replace_fields.php3: Fix typo. + 2003-04-17 Garvin Hicking * tbl_replace_fields.php3: Use $encoded_key instead of $key to detect changes in BLOB fields with a special name. diff --git a/tbl_replace_fields.php3 b/tbl_replace_fields.php3 index 485c0911e..311161cda 100755 --- a/tbl_replace_fields.php3 +++ b/tbl_replace_fields.php3 @@ -165,7 +165,7 @@ if (!$check_stop) { if (isset($fieldlist)) { if (isset($prot_row) && isset($prot_row[$key]) && $prot_row[$key] != '') { $val = '0x' . bin2hex($prot_row[$key]); - $see_binary = true; + $seen_binary = TRUE; } else { $val = "''"; }