aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filtertypes.xml
diff options
context:
space:
mode:
authorRussell Steinthal <steintr@src.gnome.org>2002-04-12 09:37:34 +0800
committerRussell Steinthal <steintr@src.gnome.org>2002-04-12 09:37:34 +0800
commita00fe6ed72baf66a5792fd30d551215a1a835754 (patch)
tree77415950e64528ff8d69f7a94b66081503ab4a5e /filter/filtertypes.xml
parent045c2a07b9516383deb591fb1e68b2b48ea1bd14 (diff)
downloadgsoc2013-evolution-a00fe6ed72baf66a5792fd30d551215a1a835754.tar
gsoc2013-evolution-a00fe6ed72baf66a5792fd30d551215a1a835754.tar.gz
gsoc2013-evolution-a00fe6ed72baf66a5792fd30d551215a1a835754.tar.bz2
gsoc2013-evolution-a00fe6ed72baf66a5792fd30d551215a1a835754.tar.lz
gsoc2013-evolution-a00fe6ed72baf66a5792fd30d551215a1a835754.tar.xz
gsoc2013-evolution-a00fe6ed72baf66a5792fd30d551215a1a835754.tar.zst
gsoc2013-evolution-a00fe6ed72baf66a5792fd30d551215a1a835754.zip
Fix "Follow Up" searches by comparing to the empty string, rather than just
looking at the string value (which isn't a boolean) (Bug #233340 svn path=/trunk/; revision=16444
Diffstat (limited to 'filter/filtertypes.xml')
-rw-r--r--filter/filtertypes.xml9
1 files changed, 7 insertions, 2 deletions
diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml
index cf7fd3c35d..eab096b3ac 100644
--- a/filter/filtertypes.xml
+++ b/filter/filtertypes.xml
@@ -471,13 +471,13 @@
<option value="is">
<title>is Flagged</title>
<code>
- (match-all (user-tag "follow-up"))
+ (match-all (not (= (user-tag "follow-up") "")))
</code>
</option>
<option value="is not">
<title>is not Flagged</title>
<code>
- (match-all (not (user-tag "follow-up")))
+ (match-all (= (user-tag "follow-up") ""))
</code>
</option>
</input>
@@ -594,6 +594,11 @@
<code>(set-score ${score})</code>
<input type="score" name="score"/>
</part>
+ <part name="adj-score">
+ <title>Adjust Score</title>
+ <code>(adjust-score ${score})</code>
+ <input type="score" name="score"/>
+ </part>
<part name="set-status">
<title>Set Status</title>
<code>