- Double click on the datetime field
- a datepicker with sliders for the time opens
- click on the little arrows for the month changing -> month is not changed
- try sliding any of the sliders -> slider handle does not move
CREATE TABLE IF NOT EXISTS `test` (
`ID` int(11) NOT NULL,
`datetime` datetime NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
INSERT INTO `test` (`ID`, `datetime`) VALUES
(1, '2015-03-12 11:30:00');
ALTER TABLE `test`
ADD PRIMARY KEY (`ID`);
ALTER TABLE `test`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
Thanks for noticing it and sorry for the trouble, it got introduced with a typo when I was reverting fixes for 4788. Should be ok after https://github.com/phpmyadmin/phpmyadmin/commit/45fbe0bc2a092eb79010386e534a8f2eaa7a5779 in time for 4.3.12.