[pLog-svn] r2201 - plog/trunk/class/logger/logger

ork at devel.plogworld.net ork at devel.plogworld.net
Sat Jun 11 22:05:53 GMT 2005


Author: ork
Date: 2005-06-11 22:05:53 +0000 (Sat, 11 Jun 2005)
New Revision: 2201

Modified:
   plog/trunk/class/logger/logger/logger.class.php
Log:
we should'nt pass this by reference, it will throw an error :)


Modified: plog/trunk/class/logger/logger/logger.class.php
===================================================================
--- plog/trunk/class/logger/logger/logger.class.php	2005-06-11 22:04:29 UTC (rev 2200)
+++ plog/trunk/class/logger/logger/logger.class.php	2005-06-11 22:05:53 UTC (rev 2201)
@@ -144,7 +144,7 @@
          *
 		 * @private
          */
-        function log( &$message, $prio )
+        function log( $message, $prio )
         {
 			if( $this->isLoggable( $prio )) {
 				// if the event is loggable, build the message and log it
@@ -163,4 +163,4 @@
         }
     }
 
-?>
\ No newline at end of file
+?>




More information about the pLog-svn mailing list