diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-09-12 02:25:45 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-09-12 02:25:45 +0800 |
commit | ae80da9abad3a04962473d1c2fee41663e3b1f16 (patch) | |
tree | c690e1d4be8b8191adc99e95b96d142e48467065 | |
parent | 10521ede3feba955c3d1fe60ed83e4aa9457e384 (diff) | |
download | gsoc2013-evolution-ae80da9abad3a04962473d1c2fee41663e3b1f16.tar gsoc2013-evolution-ae80da9abad3a04962473d1c2fee41663e3b1f16.tar.gz gsoc2013-evolution-ae80da9abad3a04962473d1c2fee41663e3b1f16.tar.bz2 gsoc2013-evolution-ae80da9abad3a04962473d1c2fee41663e3b1f16.tar.lz gsoc2013-evolution-ae80da9abad3a04962473d1c2fee41663e3b1f16.tar.xz gsoc2013-evolution-ae80da9abad3a04962473d1c2fee41663e3b1f16.tar.zst gsoc2013-evolution-ae80da9abad3a04962473d1c2fee41663e3b1f16.zip |
just changed the ${subject} variable to ${word} as subject doesn't make a whole lot of sense when dealing with arbitrary headers :-)
svn path=/trunk/; revision=5332
-rw-r--r-- | filter/filtertypes.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml index 7574540ba4..a2951920ba 100644 --- a/filter/filtertypes.xml +++ b/filter/filtertypes.xml @@ -62,17 +62,17 @@ <option value="contains"> <title>contains</title> <code> - (match-all (header-contains ${header-field} ${subject})) + (match-all (header-contains ${header-field} ${word})) </code> </option> <option value="not contains"> <title>does not contain</title> <code> - (match-all (not (header-contains ${header-field} ${subject}))) + (match-all (not (header-contains ${header-field} ${word}))) </code> </option> </input> - <input type="string" name="subject"/> + <input type="string" name="word"/> </part> <part name="body"> |