[Mapbender-commits] r8403 - branches/2.7/http/classes

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Mon Jul 2 07:41:44 PDT 2012


Author: tbaschetti
Date: 2012-07-02 07:41:43 -0700 (Mon, 02 Jul 2012)
New Revision: 8403

Modified:
   branches/2.7/http/classes/class_wms.php
Log:
substituded split() with explode (split is deprecated in PHP >= 5.3)



Modified: branches/2.7/http/classes/class_wms.php
===================================================================
--- branches/2.7/http/classes/class_wms.php	2012-07-02 13:30:08 UTC (rev 8402)
+++ branches/2.7/http/classes/class_wms.php	2012-07-02 14:41:43 UTC (rev 8403)
@@ -2086,7 +2086,7 @@
 		
 //		GET SRS_ARRAY of mapbender.conf
 		if(SRS_ARRAY != "") {
-			$confSrsArray = split(",",SRS_ARRAY);
+			$confSrsArray = explode(",",SRS_ARRAY);
 			foreach($confSrsArray as &$srs) {
 				$srs = trim($srs);
 			}



More information about the Mapbender_commits mailing list