Development

Changeset 12499

You must first sign up to be able to contribute.

Changeset 12499

Show
Ignore:
Timestamp:
10/31/08 17:10:07 (2 months ago)
Author:
Kris.Wallsmith
Message:

[1.1, 1.2] fixed alternate dispatcher being used in command application

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/command/sfSymfonyCommandApplication.class.php

    r9721 r12499  
    3333    { 
    3434      require_once $configurationFile; 
    35       $configuration = new ProjectConfiguration(getcwd()); 
     35      $configuration = new ProjectConfiguration(getcwd(), $this->dispatcher); 
    3636    } 
    3737    else 
    3838    { 
    39       $configuration = new sfProjectConfiguration(getcwd()); 
     39      $configuration = new sfProjectConfiguration(getcwd(), $this->dispatcher); 
    4040    } 
    4141 
  • branches/1.2/lib/command/sfSymfonyCommandApplication.class.php

    r9721 r12499  
    3333    { 
    3434      require_once $configurationFile; 
    35       $configuration = new ProjectConfiguration(getcwd()); 
     35      $configuration = new ProjectConfiguration(getcwd(), $this->dispatcher); 
    3636    } 
    3737    else 
    3838    { 
    39       $configuration = new sfProjectConfiguration(getcwd()); 
     39      $configuration = new sfProjectConfiguration(getcwd(), $this->dispatcher); 
    4040    } 
    4141