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-07-30 16:17:43 +0400
committerMichal Čihař <mcihar@suse.cz>2013-07-30 16:36:43 +0400
commit93d283633b4b1fd4690e2891b9a3e8bfb8eb28a7 (patch)
tree28808b705294053821a1ff44131be814bf5c9192 /js/server_variables.js
parentfa59114e9298e773db0fec42ceebdf7ff26e4b00 (diff)
Fixed newlines
Diffstat (limited to 'js/server_variables.js')
-rw-r--r--js/server_variables.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/js/server_variables.js b/js/server_variables.js
index d7e1147651..56370b8a70 100644
--- a/js/server_variables.js
+++ b/js/server_variables.js
@@ -56,9 +56,8 @@ AJAX.registerOnload('server_variables.js', function () {
var mark_next = false, $row, odd_row = false;
$('#serverVariables .var-row').not('.var-header').each(function () {
$row = $(this);
- if (mark_next
- || textFilter === null
- || textFilter.exec($row.find('.var-name').text())
+ if (mark_next || textFilter === null ||
+ textFilter.exec($row.find('.var-name').text())
) {
// If current global value is different from session value
// (has class diffSession), then display that one too