diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-10-04 09:07:59 +0200 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-10-04 09:07:59 +0200 |
commit | 7a065517afecaf0ca45df09c86c1ada201800a25 (patch) | |
tree | f45bbe7c99427bf46f453240d1eea5c504cd7a60 /phpfspot.class.php | |
parent | 37d9c8bf7eb7c4244f93d9ed780333ec1fa4ae86 (diff) |
error logging to file fails because of typo, fixes #80
Signed-off-by: William Juul <william@juul.no>
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |