Changeset 5131
- Timestamp:
- 10/22/08 22:00:24 (17 months ago)
- Files:
-
- 1 modified
-
branches/1.1/lib/Doctrine/Migration/Diff.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/lib/Doctrine/Migration/Diff.php
r5110 r5131 131 131 132 132 // clean up tmp directories 133 Doctrine_Lib::removeDirectories(sys_get_temp_dir() . strtolower(self::$_fromPrefix) . '_doctrine_tmp_dirs');134 Doctrine_Lib::removeDirectories(sys_get_temp_dir() . strtolower(self::$_toPrefix) . '_doctrine_tmp_dirs');133 Doctrine_Lib::removeDirectories(sys_get_temp_dir() . DIRECTORY_SEPARATOR . strtolower(self::$_fromPrefix) . '_doctrine_tmp_dirs'); 134 Doctrine_Lib::removeDirectories(sys_get_temp_dir() . DIRECTORY_SEPARATOR . strtolower(self::$_toPrefix) . '_doctrine_tmp_dirs'); 135 135 136 136 return $changes; … … 277 277 protected function _generateModels($prefix, $item) 278 278 { 279 $path = sys_get_temp_dir() . strtolower($prefix) . '_doctrine_tmp_dirs';279 $path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . strtolower($prefix) . '_doctrine_tmp_dirs'; 280 280 $options = array('classPrefix' => $prefix); 281 281