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:
authorRouslan Placella <rouslan@placella.com>2011-11-28 17:47:06 +0400
committerRouslan Placella <rouslan@placella.com>2011-11-28 17:47:06 +0400
commit12eacbffea6b07045e619686aeab0b009c16d082 (patch)
tree136d0fed32485f69387816aa94afc5014d590859 /js/server_variables.js
parent1621df60a1be1cc05c1b62f512f154973353345b (diff)
Error notifications should not time out
Diffstat (limited to 'js/server_variables.js')
-rw-r--r--js/server_variables.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/server_variables.js b/js/server_variables.js
index 93bc348515..3a14c0b972 100644
--- a/js/server_variables.js
+++ b/js/server_variables.js
@@ -150,7 +150,7 @@ function editVariable(link)
if (data.success) {
$cell.html(data.variable);
} else {
- PMA_ajaxShowMessage(data.error);
+ PMA_ajaxShowMessage(data.error, false);
$cell.html($cell.find('span.oldContent').html());
}
$cell.removeClass('edit');