From: Michael M Slusarz Date: Fri, 24 Sep 2010 17:55:18 +0000 (-0600) Subject: filter[not] -> flag[not] to more accurate represent action X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=99bfc729bf4505170e664277c7995a59cce2c65e;p=horde.git filter[not] -> flag[not] to more accurate represent action --- diff --git a/imp/js/dimpbase.js b/imp/js/dimpbase.js index 8efbaa907..0edd53825 100644 --- a/imp/js/dimpbase.js +++ b/imp/js/dimpbase.js @@ -898,12 +898,12 @@ var DimpBase = { if (menu.endsWith('_setflag') || menu.endsWith('_unsetflag')) { flag = elt.retrieve('flag'); this.flag(flag, this.convertFlag(flag, menu.endsWith('_setflag'))); - } else if (menu.endsWith('_filter') || menu.endsWith('_filternot')) { + } else if (menu.endsWith('_flag') || menu.endsWith('_flagnot')) { this.search = { flag: elt.retrieve('flag'), label: this.viewport.getMetaData('label'), mbox: this.folder, - not: menu.endsWith('_filternot') + not: menu.endsWith('_flagnot') }; this.go('folder:' + DIMP.conf.fsearchid); } else { @@ -3034,8 +3034,8 @@ var DimpBase = { type: 'qsearchopts' }); DM.addSubMenu('ctx_qsearchopts_by', 'ctx_qsearchby'); - DM.addSubMenu('ctx_qsearchopts_filter', 'ctx_flag'); - DM.addSubMenu('ctx_qsearchopts_filternot', 'ctx_flag'); + DM.addSubMenu('ctx_qsearchopts_flag', 'ctx_flag'); + DM.addSubMenu('ctx_qsearchopts_flagnot', 'ctx_flag'); } /* Store these text strings for updating purposes. */ diff --git a/imp/templates/dimp/index.inc b/imp/templates/dimp/index.inc index fb0b5a452..4f3c42655 100644 --- a/imp/templates/dimp/index.inc +++ b/imp/templates/dimp/index.inc @@ -487,8 +487,8 @@ function _simpleButton($id, $text, $image, $nodisplay = false)