Changeset 12499
- Timestamp:
- 10/31/08 17:10:07 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/command/sfSymfonyCommandApplication.class.php
r9721 r12499 33 33 { 34 34 require_once $configurationFile; 35 $configuration = new ProjectConfiguration(getcwd() );35 $configuration = new ProjectConfiguration(getcwd(), $this->dispatcher); 36 36 } 37 37 else 38 38 { 39 $configuration = new sfProjectConfiguration(getcwd() );39 $configuration = new sfProjectConfiguration(getcwd(), $this->dispatcher); 40 40 } 41 41 branches/1.2/lib/command/sfSymfonyCommandApplication.class.php
r9721 r12499 33 33 { 34 34 require_once $configurationFile; 35 $configuration = new ProjectConfiguration(getcwd() );35 $configuration = new ProjectConfiguration(getcwd(), $this->dispatcher); 36 36 } 37 37 else 38 38 { 39 $configuration = new sfProjectConfiguration(getcwd() );39 $configuration = new sfProjectConfiguration(getcwd(), $this->dispatcher); 40 40 } 41 41