tbrehm
2011-03-14 6f45f69a3add3fa06c23cf0fe53afca0856d8888
Fixed: FS#1558 - PHP Notice: Undefined offset: 1 in /usr/local/ispconfig/server/cron_daily.php on line 95
1 files modified
2 ■■■ changed files
server/cron_daily.php 2 ●●● patch | view | raw | blame | history
server/cron_daily.php
@@ -92,7 +92,7 @@
        $out = '';
        $found = 0;
        foreach($lines as $line) {
            list($key, $value) = preg_split('/[\t= ]+/', $line, 2);
            @list($key, $value) = preg_split('/[\t= ]+/', $line, 2);
            if($key == $varName) {
                $out .= $varName.' '.$varValue."\n";
                $found = 1;