thomascube
2005-10-16 9fee0ed9af6bb1daa3af2ff7290f5589040b4821
program/lib/imap.inc
@@ -325,7 +325,7 @@
   }
   
   //open socket connection
   $conn->fp = @fsockopen($host, $ICL_PORT, &$errno, &$errstr, 10);
   $conn->fp = @fsockopen($host, $ICL_PORT, $errno, $errstr, 10);
   if (!$conn->fp){
        $iil_error = "Could not connect to $host at port $ICL_PORT: $errstr";
        $iil_errornum = -1;
@@ -1388,7 +1388,7 @@
      $result=array();
      reset($index);
      while (list($key, $val)=each($index)){
         $result[$i]=$a[$key];
         $result[$key]=$a[$key];
         $i++;
      }
   }