[Mapbender-commits] r2620 - trunk/mapbender/lib

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Tue Jul 8 11:52:14 EDT 2008


Author: christoph
Date: 2008-07-08 11:52:14 -0400 (Tue, 08 Jul 2008)
New Revision: 2620

Modified:
   trunk/mapbender/lib/database-mysql.php
   trunk/mapbender/lib/database-pgsql.php
Log:
wrong path

Modified: trunk/mapbender/lib/database-mysql.php
===================================================================
--- trunk/mapbender/lib/database-mysql.php	2008-07-08 15:46:11 UTC (rev 2619)
+++ trunk/mapbender/lib/database-mysql.php	2008-07-08 15:52:14 UTC (rev 2620)
@@ -1,5 +1,5 @@
 <?php
-# $Id$
+# $Id:database-mysql.php 2619 2008-07-08 15:46:11Z christoph $
 # http://www.mapbender.org/index.php/database-mysql.php
 # Copyright (C) 2002 CCGIS
 #
@@ -53,8 +53,8 @@
  *  Notice the global vars $sys_dbhost,$sys_dbuser,$sys_dbpasswd,$sys_dbname that must be set up 
  *  in other functions in this library
  */
-include_once(dirname(__FILE__)."/../../http/classes/class_mb_exception.php");
-include_once(dirname(__FILE__)."/../../http/classes/class_checkInput.php");
+include_once(dirname(__FILE__)."/../http/classes/class_mb_exception.php");
+include_once(dirname(__FILE__)."/../http/classes/class_checkInput.php");
 function db_escapestring($unescaped_string){
 	return @mysql_escape_string($unescaped_string);
 }

Modified: trunk/mapbender/lib/database-pgsql.php
===================================================================
--- trunk/mapbender/lib/database-pgsql.php	2008-07-08 15:46:11 UTC (rev 2619)
+++ trunk/mapbender/lib/database-pgsql.php	2008-07-08 15:52:14 UTC (rev 2620)
@@ -1,5 +1,5 @@
 <?php
-# $Id$
+# $Id:database-pgsql.php 2619 2008-07-08 15:46:11Z christoph $
 # http://www.mapbender.org/index.php/database-pgsql.php
 # Copyright (C) 2002 CCGIS
 #
@@ -53,8 +53,8 @@
  *  Notice the global vars $sys_dbhost,$sys_dbuser,$sys_dbpasswd,$sys_dbname that must be set up 
  *  in other functions in this library
  */
-include_once(dirname(__FILE__)."/../../http/classes/class_mb_exception.php");
-include_once(dirname(__FILE__)."/../../http/classes/class_checkInput.php");
+include_once(dirname(__FILE__)."/../http/classes/class_mb_exception.php");
+include_once(dirname(__FILE__)."/../http/classes/class_checkInput.php");
 function db_escape_string($unescaped_string){
 	return @pg_escape_string(stripslashes($unescaped_string));
 }



More information about the Mapbender_commits mailing list