Development

Changeset 7656

You must first sign up to be able to contribute.

Changeset 7656

Show
Ignore:
Timestamp:
02/28/08 10:53:07 (8 months ago)
Author:
fabien
Message:

fixed version/release option in plugin:install task

Files:

Legend:

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

    r7397 r7656  
    9595    $this->logSection('plugin', sprintf('installing plugin "%s"', $arguments['name'])); 
    9696 
     97    $options['version'] = $options['release']; 
     98    unset($options['release']); 
     99 
    97100    $this->getPluginManager()->installPlugin($arguments['name'], $options); 
    98101  }