@@ 704-707 (lines=4) @@ | ||
701 | $is_gzipped = false; |
|
702 | ||
703 | while ($currentHeader = fgets($fp, $this->_maxlinelen)) { |
|
704 | if ($this->read_timeout > 0 && $this->_check_timeout($fp)) { |
|
705 | $this->status = -100; |
|
706 | return false; |
|
707 | } |
|
708 | ||
709 | if ($currentHeader == "\r\n") |
|
710 | break; |
|
@@ 759-762 (lines=4) @@ | ||
756 | $results = gzinflate($results); |
|
757 | } |
|
758 | ||
759 | if ($this->read_timeout > 0 && $this->_check_timeout($fp)) { |
|
760 | $this->status = -100; |
|
761 | return false; |
|
762 | } |
|
763 | ||
764 | // check if there is a a redirect meta tag |
|
765 |