diff options
-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"> |