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-15 14:13:04 +0400
committerMichal Čihař <mcihar@suse.cz>2013-04-15 14:14:26 +0400
commitcc7bef87d5fc7b079b755af1442bc027591cb3fa (patch)
tree934c002f0252b28b89dee9d46e0122d38de3a2b3 /js/server_status_variables.js
parentcc2c8692c38399027516e6dfe1708ab1f6082933 (diff)
Some forgotten === conversion
Diffstat (limited to 'js/server_status_variables.js')
-rw-r--r--js/server_status_variables.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/server_status_variables.js b/js/server_status_variables.js
index a029f6f8c6..48c08d220f 100644
--- a/js/server_status_variables.js
+++ b/js/server_status_variables.js
@@ -89,7 +89,7 @@ AJAX.registerOnload('server_status_variables.js', function() {
odd_row = false;
$('#serverstatusvariables th.name').each(function() {
- if ((textFilter == null || textFilter.exec($(this).text()))
+ if ((textFilter === null || textFilter.exec($(this).text()))
&& (! alertFilter || $(this).next().find('span.attention').length>0)
&& (categoryFilter.length === 0 || $(this).parent().hasClass('s_' + categoryFilter))
) {