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:
authorMichal Čihař <michal@cihar.com>2014-05-06 21:45:36 +0400
committerMichal Čihař <michal@cihar.com>2014-05-06 21:48:03 +0400
commitd681d772633ab75a3b3bb6ba6d99169468bcf032 (patch)
tree2af03d8f00a5a65204ce800ed744f08e985df2ac /js/export.js
parent32d1759ef3bdb3d26c9f292fcb8f069f5b39fddf (diff)
Use dot notation for accessing array members
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'js/export.js')
-rw-r--r--js/export.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/export.js b/js/export.js
index 6381bcc0b6..d9f294fb45 100644
--- a/js/export.js
+++ b/js/export.js
@@ -234,7 +234,7 @@ function check_time_out(time_limit)
clearTimeout(time_out);
time_out = setTimeout(function(){
$.get(href, params, function (data) {
- if (data['message'] === 'timeout') {
+ if (data.message === 'timeout') {
PMA_ajaxShowMessage(
'<div class="error">' +
PMA_messages.strTimeOutError +