From: Andreas Unterkircher Date: Sat, 4 Oct 2008 07:07:59 +0000 (+0200) Subject: error logging to file fails because of typo, fixes #80 X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=commitdiff_plain;h=7a065517afecaf0ca45df09c86c1ada201800a25 error logging to file fails because of typo, fixes #80 Signed-off-by: William Juul --- diff --git a/phpfspot.class.php b/phpfspot.class.php index 92c0fd2..18c1c52 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -2579,7 +2579,7 @@ class PHPFSPOT { error_log($text); break; case 'logfile': - error_log($text, 3, $his->cfg->log_file); + error_log($text, 3, $this->cfg->log_file); break; }