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ř <mcihar@suse.cz>2013-04-16 15:32:51 +0400
committerMichal Čihař <mcihar@suse.cz>2013-04-16 15:32:51 +0400
commit27b213431cd07b3dcaba89d9504d39e166ed0c5f (patch)
tree3281a8f79e8d6925ccdd258c55861ec7a02bfa2e /js/server_status_queries.js
parentb3ee21036a18c4661d9835083e5b13e8eb6fddc4 (diff)
Reference javascript messages by dot notation instead of using ['strFoo']
Diffstat (limited to 'js/server_status_queries.js')
-rw-r--r--js/server_status_queries.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/server_status_queries.js b/js/server_status_queries.js
index 51bb155347..9939105d24 100644
--- a/js/server_status_queries.js
+++ b/js/server_status_queries.js
@@ -34,7 +34,7 @@ AJAX.registerOnload('server_status_queries.js', function () {
PMA_tooltip(
$('table.sortable>thead>tr:first').find('th'),
'th',
- PMA_messages['strSortHint']
+ PMA_messages.strSortHint
);
initTableSorter('statustabs_queries');
});