From 4752a5bc3d81162e98f96399cb59635f0ff640f2 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 13 Nov 2009 13:49:54 -0700 Subject: [PATCH] Correctly filter inverse flags --- imp/js/DimpBase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/js/DimpBase.js b/imp/js/DimpBase.js index b5488bab0..d0789d2be 100644 --- a/imp/js/DimpBase.js +++ b/imp/js/DimpBase.js @@ -413,7 +413,7 @@ var DimpBase = { if (this.folderswitch && this.isSearch(id, true)) { p.set('qsearchmbox', this.search.mbox); if (this.search.flag) { - p.update({ qsearchflag: this.search.flag, qsearchflagnot: Number(this.search.not) }); + p.update({ qsearchflag: this.search.flag, qsearchflagnot: Number(this.convertFlag(this.search.flag, this.search.not)) }); } else { p.set('qsearch', $F('qsearch_input')); } -- 2.11.0