diff options
author | Alib <aliboba@free.fr> | 2011-03-10 08:49:21 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2011-03-10 08:49:21 +0100 |
commit | 93472403c28b2bb7538db15b12de1d3725f3d618 (patch) | |
tree | 124676540cde30528506df9cdb1f274868192717 | |
parent | bf854df1bc71d1f72a00c33a8c6a9144b841a860 (diff) | |
download | istreamdev-93472403c28b2bb7538db15b12de1d3725f3d618.tar.gz istreamdev-93472403c28b2bb7538db15b12de1d3725f3d618.tar.bz2 |
fix bug in svdrp.php after latest commit
-rw-r--r-- | bin/svdrp.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/svdrp.php b/bin/svdrp.php index ceed493..efee0f0 100644 --- a/bin/svdrp.php +++ b/bin/svdrp.php @@ -67,9 +67,8 @@ class SVDRP $nline = 0; while(!feof($this->handle)) { - $s .= fgets($this->handle,4096)) - $nline++; - + $s .= fgets($this->handle); + $nline++; $this->DebugMessage($s); if(!preg_match("/^(\\d{3})([ -])(.*)$/", $s, $data)) { |