From 7a065517afecaf0ca45df09c86c1ada201800a25 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 4 Oct 2008 09:07:59 +0200 Subject: [PATCH] error logging to file fails because of typo, fixes #80 Signed-off-by: William Juul --- phpfspot.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.25.1