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:
Diffstat (limited to 'js/config.js')
-rw-r--r--js/config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/config.js b/js/config.js
index 5d22636536..10a9682b50 100644
--- a/js/config.js
+++ b/js/config.js
@@ -557,7 +557,7 @@ AJAX.registerOnload('config.js', function () {
function setTab(tab_id)
{
$('ul.tabs').each(function() {
- $this = $(this);
+ var $this = $(this);
if (!$this.find('li a[href=#' + tab_id + ']').length) {
return;
}
@@ -571,7 +571,7 @@ function setTab(tab_id)
function setupConfigTabs() {
var forms = $('form.config-form');
forms.each(function() {
- $this = $(this);
+ var $this = $(this);
var $tabs = $this.find('ul.tabs');
if (!$tabs.length) {
return;