Changeset 7683
- Timestamp:
- 02/29/08 11:46:02 (8 months ago)
- Files:
-
- branches/1.1/lib/task/sfBaseTask.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/task/sfBaseTask.class.php
r7682 r7683 41 41 else 42 42 { 43 $this->configuration = new sfProjectConfiguration(getcwd()); 43 if (file_exists(sfConfig::get('sf_lib_dir').'/ProjectConfiguration.class.php')) 44 { 45 require_once sfConfig::get('sf_lib_dir').'/ProjectConfiguration.class.php'; 46 $this->configuration = new ProjectConfiguration(); 47 } 48 else 49 { 50 $this->configuration = new sfProjectConfiguration(getcwd()); 51 } 44 52 } 45 53