[Mapbender-commits] r2035 - branches/2.5/http/classes
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Tue Jan 29 07:43:01 EST 2008
Author: christoph
Date: 2008-01-29 07:43:00 -0500 (Tue, 29 Jan 2008)
New Revision: 2035
Modified:
branches/2.5/http/classes/class_mb_log.php
Log:
message and result must be public not protected
Modified: branches/2.5/http/classes/class_mb_log.php
===================================================================
--- branches/2.5/http/classes/class_mb_log.php 2008-01-29 12:38:26 UTC (rev 2034)
+++ branches/2.5/http/classes/class_mb_log.php 2008-01-29 12:43:00 UTC (rev 2035)
@@ -133,11 +133,11 @@
/**
* @var bool true if the logging succeeded; else false.
*/
- protected $result = false;
+ public $result = false;
/**
* @var string if the logging did not succeed, this contains an error message.
*/
- protected $message = "";
+ public $message = "";
}
?>
\ No newline at end of file
More information about the Mapbender_commits
mailing list