phpdc.inc.php line 457
original: if (!($arq = @fopen($filename, "r"))) print "unable to get server list"; return 0;
fixed: if (!($arq = @fopen($filename, "r"))){ print "unable to get server list"; return 0; }
Log in to post a comment.