[Mapbender-commits] r2192 - branches/2.4.5/http/php

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Thu Mar 6 08:05:35 EST 2008


Author: christoph
Date: 2008-03-06 08:05:35 -0500 (Thu, 06 Mar 2008)
New Revision: 2192

Modified:
   branches/2.4.5/http/php/mod_owsproxy_conf.php
Log:
require_once, not include

Modified: branches/2.4.5/http/php/mod_owsproxy_conf.php
===================================================================
--- branches/2.4.5/http/php/mod_owsproxy_conf.php	2008-03-06 12:43:42 UTC (rev 2191)
+++ branches/2.4.5/http/php/mod_owsproxy_conf.php	2008-03-06 13:05:35 UTC (rev 2192)
@@ -18,7 +18,7 @@
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
 require_once(dirname(__FILE__)."/../php/mb_validatePermission.php");
-include(dirname(__FILE__)."/../classes/class_administration.php");
+require_once(dirname(__FILE__)."/../classes/class_administration.php");
 $admin = new administration();
 $ownwms = $admin->getWmsByOwner($_SESSION["mb_user_id"]);
 if(isset($_REQUEST["wms_id"]) && isset($_REQUEST["status"])){



More information about the Mapbender_commits mailing list