Menu

#18 Fix for Snoopy to work in PHP 4.3.2

closed
nobody
None
5
2003-10-21
2003-06-18
No

On line 882

$results = fread($fp, $this->maxlength);

this should be:

while(!feof($fp))
{
$results .= fread($fp, 1024);
}

Untill this is changed, Snoopy does not work on PHP
4.3.2 +

Discussion

  • Monte Ohrt

    Monte Ohrt - 2003-10-21

    Logged In: YES
    user_id=10328

    this is fixed for 1.01

     
  • Monte Ohrt

    Monte Ohrt - 2003-10-21
    • status: open --> closed
     

Log in to post a comment.