phpmyadmin 3.4.3.1
1) Set up the test table:
create table `test` (`col1` datetime not null, `col2` datetime null, `col3` datetime not null)
insert into `test` values (0, NULL, 0)
2) browse table "test"
3) Click on the inline edit icon to open that row for inline editing
4) Focus on (click on) the input field for "col1". Note that NULL checkbox on 'col2' is checked,
5) Press TAB a few times.As soon as the cursor leaves input field for 'col2' (onblur), the NULL checkbox on 'col2' gets unchecked, even though no editing was done to that field
Desired behavior: TABbing through 'col2' should not change the state of its NULL checkbox.
Tested with IE9, Chrome12 and FF5 and the bug is evident only in FF.
This bug was fixed in repository and will be part of a future release; thanks for reporting.