diff --git a/ChangeLog b/ChangeLog index 4c7362d8b..0ab1244b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -50,6 +50,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #2826986 [display] Order by BLOB and range display - bug [display] After clicking on Show Function or Function, the UPDATE query is not shown after execution +- bug [structure] Missing validation for BINARY and VARBINARY 3.2.1.0 (2009-08-09) - bug #2799009 Login with ipv6 IP address breaks redirect diff --git a/js/functions.js b/js/functions.js index a0345b77a..f42c60ffc 100644 --- a/js/functions.js +++ b/js/functions.js @@ -707,7 +707,7 @@ function checkTableEditForm(theForm, fieldsCnt) { id = "field_" + i + "_2"; elm = getElement(id); - if (elm.value == 'VARCHAR' || elm.value == 'CHAR' || elm.value == 'BIT') { + if (elm.value == 'VARCHAR' || elm.value == 'CHAR' || elm.value == 'BIT' || elm.value == 'VARBINARY' || elm.value == 'BINARY') { elm2 = getElement("field_" + i + "_3"); val = parseInt(elm2.value); elm3 = getElement("field_" + i + "_1");