[pLog-svn] r5489 - plog/trunk/class/dao

mark at devel.lifetype.net mark at devel.lifetype.net
Tue Jun 5 10:21:42 EDT 2007


Author: mark
Date: 2007-06-05 10:21:42 -0400 (Tue, 05 Jun 2007)
New Revision: 5489

Modified:
   plog/trunk/class/dao/locationawaredbobject.class.php
Log:
Fixed a  include error.

Modified: plog/trunk/class/dao/locationawaredbobject.class.php
===================================================================
--- plog/trunk/class/dao/locationawaredbobject.class.php	2007-06-05 13:51:03 UTC (rev 5488)
+++ plog/trunk/class/dao/locationawaredbobject.class.php	2007-06-05 14:21:42 UTC (rev 5489)
@@ -1,7 +1,7 @@
 <?php
 
-	include_once( PLOG_CLASS_PATH."class/database/dbobject.class.php" );
-	include_once( PLOG_CLASS_PATH."class/dao/location.class.php" );	
+	lt_include( PLOG_CLASS_PATH."class/database/dbobject.class.php" );
+	lt_include( PLOG_CLASS_PATH."class/dao/location.class.php" );	
 
 	/**
 	 * @see DbObject
@@ -23,7 +23,7 @@
 		function getLocation()
 		{
 			if( $this->_location === null && $this->_locationId != 0 ) {
-				include_once( PLOG_CLASS_PATH."class/dao/locations.class.php" );
+				lt_include( PLOG_CLASS_PATH."class/dao/locations.class.php" );
 				$locations = new Locations();
 				$this->_location = $locations->getLocation( $this->getLocationId());
 			}



More information about the pLog-svn mailing list