Fix parse errors (Bug #8109).
authorJan Schneider <jan@horde.org>
Mon, 23 Mar 2009 11:36:13 +0000 (12:36 +0100)
committerJan Schneider <jan@horde.org>
Mon, 23 Mar 2009 11:36:13 +0000 (12:36 +0100)
framework/Imap_Client/lib/Horde/Imap/Client/Utils.php

index c283ee3..4cf26cb 100644 (file)
@@ -46,7 +46,7 @@ class Horde_Imap_Client_Utils
             $str = '';
 
             foreach ($in as $mbox => $ids) {
-                $str .= '{' . strlen($mbox) . '}' . $mbox . implode(',' $this->_toSequenceString($ids, array('nosort' => !empty($options['nosort'])));
+                $str .= '{' . strlen($mbox) . '}' . $mbox . implode(',', $this->_toSequenceString($ids, array('nosort' => !empty($options['nosort']))));
             }
 
             return $str;