[Mapbender-commits] r1015 - trunk/mapbender/http/classes
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Fri Jan 19 05:10:45 EST 2007
Author: christoph
Date: 2007-01-19 05:10:45 -0500 (Fri, 19 Jan 2007)
New Revision: 1015
Modified:
trunk/mapbender/http/classes/class_mb_exception.php
Log:
removed return value
Modified: trunk/mapbender/http/classes/class_mb_exception.php
===================================================================
--- trunk/mapbender/http/classes/class_mb_exception.php 2007-01-17 16:27:55 UTC (rev 1014)
+++ trunk/mapbender/http/classes/class_mb_exception.php 2007-01-19 10:10:45 UTC (rev 1015)
@@ -25,7 +25,7 @@
class mb_exception{
var $dir = "../../log/";
- var $thrown = false;
+// var $thrown = false;
function mb_exception($n){
if(is_dir($this->dir)){
@@ -33,7 +33,7 @@
if($h = @fopen($logfile,"a")){
$content = date("Y.m.d") . "," . date("H:i:s") . "," . $n .chr(13).chr(10);
fclose($h);
- $this->thrown = true;
+// $this->thrown = true;
}
}
}
More information about the Mapbender_commits
mailing list