summaryrefslogtreecommitdiff
path: root/plugins/managesieve/managesieve.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-01-12 11:22:20 +0000
committeralecpl <alec@alec.pl>2010-01-12 11:22:20 +0000
commite363390bdc832b718c219a18032aed89377d7828 (patch)
treeb49835e776d142be2db44f4d32074d985a790327 /plugins/managesieve/managesieve.php
parentda1722a587edc378d94409a735883d600f7b3430 (diff)
- Fix problem with '<' and '>' characters in header tests (#1486391)
Diffstat (limited to 'plugins/managesieve/managesieve.php')
-rw-r--r--plugins/managesieve/managesieve.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/plugins/managesieve/managesieve.php b/plugins/managesieve/managesieve.php
index 065524032..677d6951e 100644
--- a/plugins/managesieve/managesieve.php
+++ b/plugins/managesieve/managesieve.php
@@ -7,7 +7,7 @@
* It's clickable interface which operates on text scripts and communicates
* with server using managesieve protocol. Adds Filters tab in Settings.
*
- * @version 2.0
+ * @version 2.1
* @author Aleksander 'A.L.E.C' Machniak <alec@alec.pl>
*
* Configuration (see config.inc.php.dist):
@@ -323,7 +323,7 @@ class managesieve extends rcube_plugin
else foreach($headers as $idx => $header)
{
$header = $this->strip_value($header);
- $target = $this->strip_value($targets[$idx]);
+ $target = $this->strip_value($targets[$idx], true);
$op = $this->strip_value($ops[$idx]);
// normal header
@@ -962,9 +962,12 @@ class managesieve extends rcube_plugin
return $result;
}
- private function strip_value($str)
+ private function strip_value($str, $allow_html=false)
{
- return trim(strip_tags($str));
+ if (!$allow_html)
+ $str = strip_tags($str);
+
+ return trim($str);
}
private function error_class($id, $type, $target, $name_only=false)