Merge remote-tracking branch 'origin/QA_4_2' into QA_4_2

This commit is contained in:
Weblate 2014-08-19 14:51:47 +02:00
commit fedc2ba51d
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);