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:
authorTyron Madlener <tyronx@gmail.com>2011-07-05 19:35:10 +0400
committerTyron Madlener <tyronx@gmail.com>2011-07-05 19:35:10 +0400
commitb8fbb9d1afef9866d0c9c7428f61ea587d9c80be (patch)
tree3884ddf48a01ecfcccfa4fa7e817d311719132f3 /js/server_variables.js
parent9d719275516afd4ead2e1821bf83349ace4e461e (diff)
Work on the Server Monitor and other things
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 a2c078811e..68985b1e03 100644
--- a/js/server_variables.js
+++ b/js/server_variables.js
@@ -129,7 +129,7 @@ $(function() {
$('#filterText').keyup(function(e) {
if($(this).val().length==0) textFilter=null;
- else textFilter = new RegExp("(^| )"+$(this).val(),'i');
+ else textFilter = new RegExp("(^| )"+$(this).val().replace('_',' '),'i');
filterVariables();
});