error logging to file fails because of typo, fixes #80
authorAndreas Unterkircher <unki@netshadow.at>
Sat, 4 Oct 2008 07:07:59 +0000 (09:07 +0200)
committerAndreas Unterkircher <unki@netshadow.at>
Sat, 4 Oct 2008 07:07:59 +0000 (09:07 +0200)
Signed-off-by: William Juul <william@juul.no>
phpfspot.class.php

index 92c0fd2e69da2efa3c1d5a86a82f087f346d43dd..18c1c52c3526413d029857ca263de624b576cd4c 100644 (file)
@@ -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;
       }