Author: kurdalen
Date: Sun Mar 23 13:34:19 2008
New Revision: 640255

URL: http://svn.apache.org/viewvc?rev=640255&view=rev
Log:
fixed LOG4PHP-5

Modified:
    incubator/log4php/trunk/src/main/php/appenders/LoggerAppenderFile.php

Modified: incubator/log4php/trunk/src/main/php/appenders/LoggerAppenderFile.php
URL: 
http://svn.apache.org/viewvc/incubator/log4php/trunk/src/main/php/appenders/LoggerAppenderFile.php?rev=640255&r1=640254&r2=640255&view=diff
==============================================================================
--- incubator/log4php/trunk/src/main/php/appenders/LoggerAppenderFile.php 
(original)
+++ incubator/log4php/trunk/src/main/php/appenders/LoggerAppenderFile.php Sun 
Mar 23 13:34:19 2008
@@ -50,16 +50,16 @@
     /**
      * @var string the file name used to append events
      */
-    private $fileName;
+       protected $fileName;
     /**
      * @var mixed file resource
      */
-    private $fp = false;
+       protected $fp = false;
     
-        public function __construct($name) {
-                parent::__construct($name);
-                $this->requiresLayout = true;
-    }
+       public function __construct($name) {
+               parent::__construct($name);
+               $this->requiresLayout = true;
+       }
 
     public function activateOptions() {
         $fileName = $this->getFile();


Reply via email to