thomascube
2009-01-22 f9160ecea7c56c46360050831750cda1b943346d
Fix infinite while loop

1 files modified
4 ■■■■ changed files
bin/modcss.php 4 ●●●● patch | view | raw | blame | history
bin/modcss.php
@@ -63,14 +63,14 @@
    if ($header
        && preg_match('/^HTTP\/1\..\s+(\d+)/', $line, $regs)
        && intval($regs[1]) != 200) {
    break;
        break;
    } else if (empty($line) && $header) {
        $header = false;
    } else if (!$header) {
        $source .= "$line\n";
    }
    fclose($fp);
}
fclose($fp);
if (!empty($source)) {
    header('Content-Type: text/css');