Changeset 448
- Timestamp:
- 01/12/08 16:23:56 (12 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
modules/base/classes/cache.php (modified) (1 diff)
-
owa_env.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/base/classes/cache.php
r446 r448 113 113 114 114 if (!in_array($collection, $this->non_persistant_collections)): 115 if (!in_array($hkey, $this->dirty_objs[$collection])): 115 // check to make sure the dirty collection exists and object is not already in there. 116 if (!empty($this->dirty_objs[$collection]) || !in_array($hkey, $this->dirty_objs[$collection])): 116 117 $this->dirty_objs[$collection][] = $hkey; 117 118 //$this->debug(print_r($this->dirty_objs, true)); -
trunk/owa_env.php
r442 r448 43 43 define('OWA_DATA_DIR', OWA_BASE_DIR.DIRECTORY_SEPARATOR.'owa-data'.DIRECTORY_SEPARATOR); 44 44 define('OWA_CACHE_DIR', OWA_DATA_DIR.'caches'.DIRECTORY_SEPARATOR); 45 define('OWA_VERSION', ' 1.1.0rc2');45 define('OWA_VERSION', '$owa_version$'); 46 46 ?>
