[Mapbender-commits] r5172 - trunk/mapbender/http/classes
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Sat Dec 12 08:23:04 EST 2009
Author: christoph
Date: 2009-12-12 08:23:04 -0500 (Sat, 12 Dec 2009)
New Revision: 5172
Modified:
trunk/mapbender/http/classes/class_element.php
Log:
Modified: trunk/mapbender/http/classes/class_element.php
===================================================================
--- trunk/mapbender/http/classes/class_element.php 2009-12-12 13:21:22 UTC (rev 5171)
+++ trunk/mapbender/http/classes/class_element.php 2009-12-12 13:23:04 UTC (rev 5172)
@@ -227,18 +227,21 @@
include(dirname(__FILE__)."/../include/dyn_php.php");
$splashScreen = "";
-
+ global $firephp;
if (isset($use_load_message) AND $use_load_message != 'false') {
$this->isBodyAndUsesSplashScreen = true;
if (isset($htmlWhileLoading) && $htmlWhileLoading != '') {
+ $firephp->log("HTML");
$splashScreen .= $htmlWhileLoading;
} elseif (isset($includeWhileLoading) && $includeWhileLoading != '' && file_exists(dirname(__FILE__)."/".$includeWhileLoading)) {
+ $firephp->log("FILE");
ob_start();
include(dirname(__FILE__)."/".$includeWhileLoading);
$splashScreen .= ob_get_contents();
ob_end_clean();
}
else {
+ $firephp->log("DEFAULT");
$splashScreen .= "<img alt='indicator wheel' src='../img/indicator_wheel.gif'> " .
"<strong>Ma<span style='font-color:#0000CE'>p</span><span style='font-color:#C00000'>b</span>ender " .
MB_VERSION_NUMBER . " " . strtolower(MB_VERSION_APPENDIX) . "</strong>..." .
More information about the Mapbender_commits
mailing list