bug #4519 Uncaught TypeError: Cannot read property 'success' of null

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2014-08-19 08:51:15 -04:00
parent 9109c96322
commit a2ab758e9b
2 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog
4.2.8.0 (not yet released)
- bug #4516 Odd export behavior
- bug #4519 Uncaught TypeError: Cannot read property 'success' of null
4.2.7.1 (2014-08-17)
- bug #4501 [security] XSS in table browse page

View File

@ -234,6 +234,9 @@ var AJAX = {
* @return void
*/
responseHandler: function (data) {
if (typeof data === 'undefined') {
return;
}
if (data.success) {
$table_clone = false;
PMA_ajaxRemoveMessage(AJAX.$msgbox);