]> git.mjollnir.org Git - moodle.git/commitdiff
Removed HALFOPEN as per http://moodle.org/mod/forum/discuss.php?d=11115
authormoodler <moodler>
Sun, 15 Aug 2004 14:17:22 +0000 (14:17 +0000)
committermoodler <moodler>
Sun, 15 Aug 2004 14:17:22 +0000 (14:17 +0000)
auth/pop3/lib.php

index a383905756adb679b2e34b950f0c15ca5c825acb..bd78bc29d5b3e60421cba7ee3d65496e05f16fc3 100644 (file)
@@ -26,7 +26,7 @@ function auth_user_login ($username, $password) {
         }
 
         error_reporting(0);
-        $connection = imap_open($host, $username, $password, OP_HALFOPEN);
+        $connection = imap_open($host, $username, $password);
         error_reporting($CFG->debug);   
  
         if ($connection) {