[Mapbender-commits] r1262 - trunk/mapbender/http/classes

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Fri Apr 13 09:36:14 EDT 2007


Author: marcjansen
Date: 2007-04-13 09:36:14 -0400 (Fri, 13 Apr 2007)
New Revision: 1262

Modified:
   trunk/mapbender/http/classes/class_mb_exception.php
Log:
replaced two date() calls by one

Modified: trunk/mapbender/http/classes/class_mb_exception.php
===================================================================
--- trunk/mapbender/http/classes/class_mb_exception.php	2007-04-13 13:01:58 UTC (rev 1261)
+++ trunk/mapbender/http/classes/class_mb_exception.php	2007-04-13 13:36:14 UTC (rev 1262)
@@ -55,7 +55,7 @@
 			if(is_dir($this->dir)){
 				$logfile = $this->dir . $this->filename_prefix . date("Y_m_d") . ".log";
 				if($h = fopen($logfile,"a")){
-					$content = date("Y.m.d") . "," . date("H:i:s") . "," . $n .chr(13).chr(10);
+					$content = date("Y.m.d, H:i:s") . "," . $n .chr(13).chr(10);
 					if(!fwrite($h,$content)){
 						#exit;
 					}



More information about the Mapbender_commits mailing list