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:15:05 +0400
committerMarc Delisle <marc@infomarc.info>2014-09-17 17:15:05 +0400
commit070a9e1d627644fe007aa9b74a600d98098f3940 (patch)
treeb2ccf3e3b39b98d63de58953153eaf315a03c077 /js/tbl_structure.js
parenta10d5e15f6397680910e3e253c8f0386bc6cae4a (diff)
bug tbl_structure.js "cannot read property"
Signed-off-by: Marc Delisle <marc@infomarc.info>
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 9821cb312f..3436c66a63 100644
--- a/js/tbl_structure.js
+++ b/js/tbl_structure.js
@@ -110,7 +110,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)