protected function _fixPerms()
 {
     chdir(sfConfig::get('sf_root_dir'));
     $task = new sfSympalFixPermsTask($this->_dispatcher, $this->_formatter);
     $task->run();
 }
Example #2
0
 protected function _fixPerms()
 {
     chdir(sfConfig::get('sf_root_dir'));
     $task = new sfSympalFixPermsTask($this->_dispatcher, $this->_formatter);
     $this->logTaskCall('permissions', 'Preparing sympal permissions', 'sympal:fix-perms');
     $this->_disableOutput();
     $task->run();
     $this->_enableOutput();
     $this->logSection('permissions', '...permissions set');
 }