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:
authorAtul Pratap Singh <atulpratapsingh05@gmail.com>2012-10-13 12:34:05 +0400
committerAtul Pratap Singh <atulpratapsingh05@gmail.com>2012-10-13 12:34:05 +0400
commitd97e12fe35c290efc5d27dbec5792b672687e3d9 (patch)
tree09c11e7b714e0b886098840bd222b2c8195fc427 /js/tbl_select.js
parenta40e19b8bb3f347f6e32c793b53c66eae12a147e (diff)
Fix bug #3576322
Diffstat (limited to 'js/tbl_select.js')
-rw-r--r--js/tbl_select.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tbl_select.js b/js/tbl_select.js
index ec274dc5aa..85cf9d3ab5 100644
--- a/js/tbl_select.js
+++ b/js/tbl_select.js
@@ -76,7 +76,7 @@ $(function() {
continue;
}
- if (values['criteriaValues[' + a + ']'] == '') {
+ if (values['criteriaValues[' + a + ']'] == '' || values['criteriaValues[' + a + ']'] == null) {
delete values['criteriaValues[' + a + ']'];
delete values['criteriaColumnOperators[' + a + ']'];
delete values['criteriaColumnNames[' + a + ']'];