diff --git a/ChangeLog b/ChangeLog index fc0b9c1c1a..ffbc85f500 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,7 @@ phpMyAdmin - ChangeLog - bug #3905 [export] Custom Exporting exports all databases - bug #3909 [import] Import of CSV FIle to selected table doesn't work - bug #3904 Browsing an empty table should not display its Structure +- bug #3908 Calendar widget improperly redirects to home 4.0.0.0 (2013-05-03) + Patch #3481047 for rfe #3480477 Insert as new row enhancement diff --git a/js/ajax.js b/js/ajax.js index 39a1218947..6779c80d1d 100644 --- a/js/ajax.js +++ b/js/ajax.js @@ -136,6 +136,10 @@ var AJAX = { return true; } else if (href && href.match(/^mailto/)) { return true; + } else if ($(this).hasClass('ui-datepicker-next') || + $(this).hasClass('ui-datepicker-prev') + ) { + return true; } if (typeof event != 'undefined') {