Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2014-09-17 17:16:12 +0400
committerMarc Delisle <marc@infomarc.info>2014-09-17 17:16:12 +0400
commit176486c36c26fea7a54b7919bf1c1246b1dcf887 (patch)
tree569fc73bc0772421e0514c9deefa7a0fbb1b93ad /js/tbl_structure.js
parentc4c5810c9dfae2cb4a6245257fd1dc2f2d9a129a (diff)
parent070a9e1d627644fe007aa9b74a600d98098f3940 (diff)
Merge branch 'QA_4_2'
Diffstat (limited to 'js/tbl_structure.js')
-rw-r--r--js/tbl_structure.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tbl_structure.js b/js/tbl_structure.js
index 0d6f929c8d..bf5f626036 100644
--- a/js/tbl_structure.js
+++ b/js/tbl_structure.js
@@ -116,7 +116,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
} else if ($(".error:not(.tab)").length !== 0) {
$(".error:not(.tab)").remove();
}
- if (data.success === true) {
+ if (typeof data.success != 'undefined' && data.success === true) {
$("#page_content")
.empty()
.append(data.message)