Fix socket driver instantiation.
authorJan Schneider <jan@horde.org>
Sun, 19 Apr 2009 09:36:28 +0000 (11:36 +0200)
committerJan Schneider <jan@horde.org>
Sun, 19 Apr 2009 09:36:28 +0000 (11:36 +0200)
framework/Imap_Client/lib/Horde/Imap/Client/Cclient.php

index ed9cc1c..e759156 100644 (file)
@@ -1615,7 +1615,7 @@ class Horde_Imap_Client_Cclient extends Horde_Imap_Client_Base
     protected function _getSocket()
     {
         if (!isset($this->_socket)) {
-            $this->_socket = $this->getInstance('Socket', $this->_params);
+            $this->_socket = Horde_Imap_Client::getInstance('Socket', $this->_params);
         }
         return $this->_socket;
     }