fix variable typo (undefined variable) in cron_autoresponder; don't use webfonts by default

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2013-03-05 15:51:32 +01:00
parent 92aea9d27e
commit f88c93a301
3 changed files with 7 additions and 7 deletions

View File

@@ -104,12 +104,12 @@ if($db->num_rows($result) > 0)
$lcount = 0; $content = array(); $handle = @fopen($fullFilename, "r");
if ($handle) {
// 1023 lines of an email should be enough to analyze it
while (($count++<1023) && (($buffer = fgets($handle)) !== false)) {
$content[]=$buffer;
while (($lcount++<1023) && (($buffer = fgets($handle)) !== false)) {
$content[]=$buffer;
}
fclose($handle);
}
// error reading mail contents or just empty
if(count($content) == 0)
{