Development

Changeset 16445

You must first sign up to be able to contribute.

Changeset 16445

Show
Ignore:
Timestamp:
03/19/09 19:03:10 (4 years ago)
Author:
FabianLange
Message:

[1.1, 1.2, 1.3] sfPluginManager now installs dependencies recursively if needed (closes #5998)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/plugin/sfPluginManager.class.php

    r13634 r16445  
    339339          try 
    340340          { 
    341             $this->doInstallPlugin($dependency['name'], array('channel' => $dependency['channel'])); 
     341            $this->doInstallPlugin($dependency['name'], array('channel' => $dependency['channel'], 'install_deps' => true)); 
    342342          } 
    343343          catch (sfException $e) 
  • branches/1.2/lib/plugin/sfPluginManager.class.php

    r13759 r16445  
    339339          try 
    340340          { 
    341             $this->doInstallPlugin($dependency['name'], array('channel' => $dependency['channel'])); 
     341            $this->doInstallPlugin($dependency['name'], array('channel' => $dependency['channel'], 'install_deps' => true)); 
    342342          } 
    343343          catch (sfException $e) 
  • branches/1.3/lib/plugin/sfPluginManager.class.php

    r13759 r16445  
    339339          try 
    340340          { 
    341             $this->doInstallPlugin($dependency['name'], array('channel' => $dependency['channel'])); 
     341            $this->doInstallPlugin($dependency['name'], array('channel' => $dependency['channel'], 'install_deps' => true)); 
    342342          } 
    343343          catch (sfException $e)