[Mapbender-commits] r4799 - trunk/mapbender/http/classes
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Tue Oct 20 07:49:20 EDT 2009
Author: christoph
Date: 2009-10-20 07:49:19 -0400 (Tue, 20 Oct 2009)
New Revision: 4799
Modified:
trunk/mapbender/http/classes/class_element.php
Log:
avoid PHP notices
Modified: trunk/mapbender/http/classes/class_element.php
===================================================================
--- trunk/mapbender/http/classes/class_element.php 2009-10-20 11:49:01 UTC (rev 4798)
+++ trunk/mapbender/http/classes/class_element.php 2009-10-20 11:49:19 UTC (rev 4799)
@@ -226,7 +226,7 @@
$splashScreen = "";
- if ($use_load_message) {
+ if (isset($use_load_message)) {
$this->isBodyAndUsesSplashScreen = true;
if (isset($htmlWhileLoading) && $htmlWhileLoading != '') {
$splashScreen .= $htmlWhileLoading;
@@ -291,4 +291,4 @@
}
-?>
\ No newline at end of file
+?>
More information about the Mapbender_commits
mailing list