Changeset 7682
- Timestamp:
- 02/29/08 10:56:20 (8 months ago)
- Files:
-
- branches/1.1/lib/task/sfBaseTask.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/task/sfBaseTask.class.php
r7614 r7682 31 31 $this->checkProjectExists(); 32 32 33 $this->configuration = new sfProjectConfiguration(getcwd());34 35 33 $application = $commandManager->getArgumentSet()->hasArgument('application') ? $commandManager->getArgumentValue('application') : null; 36 34 if (!is_null($application)) … … 40 38 require_once sfConfig::get('sf_lib_dir').'/'.$class.'.class.php'; 41 39 $this->configuration = new $class('test', true); 40 } 41 else 42 { 43 $this->configuration = new sfProjectConfiguration(getcwd()); 42 44 } 43 45