aboutsummaryrefslogtreecommitdiffstats
path: root/filter/vfoldertypes.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/vfoldertypes.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/vfoldertypes.xml')
-rw-r--r--filter/vfoldertypes.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/vfoldertypes.xml b/filter/vfoldertypes.xml
index 5808bbfffc..176cc94464 100644
--- a/filter/vfoldertypes.xml
+++ b/filter/vfoldertypes.xml
@@ -295,13 +295,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>