Fix array_merge usage.
authorMichael J. Rubinsky <mrubinsk@horde.org>
Fri, 30 Jul 2010 22:09:17 +0000 (18:09 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Fri, 30 Jul 2010 22:10:07 +0000 (18:10 -0400)
framework/ActiveSync/lib/Horde/ActiveSync/Driver/Base.php

index cf68559..8293fd4 100644 (file)
@@ -147,7 +147,7 @@ abstract class Horde_ActiveSync_Driver_Base
 
         /* Override any security policies */
         if (!empty($params['policies'])) {
-            array_merge($this->_policies, $params['policies']);
+            $this->_policies = array_merge($this->_policies, $params['policies']);
         }
     }
 
@@ -626,4 +626,4 @@ abstract class Horde_ActiveSync_Driver_Base
         return "";
     }
 
-}
\ No newline at end of file
+}