As you have probably noticed in my submission to this bug yesterday
the patch is the wrong way round. oops!

Here is the correct patch:

====================
--- managesieve.lib.php.orig    2012-06-07 15:09:28.000000000 +0100
+++ managesieve.lib.php 2012-06-07 17:20:30.000000000 +0100
@@ -887,10 +887,10 @@
               $this->modules = split(' ', $this->item[1]);
               if(is_array($this->modules)){
                   foreach($this->modules as $m) {
-                      $this->capabilities[$cap_type][strtolower($m)]=true;
+                      $this->capabilities[$cap_type][$m]=true;
                   }
               } elseif(is_string($this->modules)) {
-
$this->capabilites[$cap_type][strtolower($this->modules)]=true;
+                  $this->capabilites[$cap_type][$this->modules]=true;
               }
           } else {
               $this->capabilities["unknown"][]=$this->line;
====================

Regards
Alex Owen



-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to