Index: temp/trunk/data/module/Net/Socket.php
===================================================================
--- temp/trunk/data/module/Net/Socket.php	(revision 8275)
+++ temp/trunk/data/module/Net/Socket.php	(revision 8284)
@@ -449,15 +449,4 @@
         $timeout = time() + $this->timeout;
 		
-		
-		$fp = $this->fp;
-        while (($c =@fgets($fp, $this->lineLength))!==false && (!$this->timeout || time() < $timeout)) {
-            $line .= $c;
-            if (substr($line, -1) == "\n") {
-				
-                return rtrim($line, "\r\n");
-            }
-        }
-		
-		/*
         while (!feof($this->fp) && (!$this->timeout || time() < $timeout)) {
             $line .= @fgets($this->fp, $this->lineLength);
@@ -466,5 +455,5 @@
             }
         }
-        */
+
         return $line;
     }
