Development

Changeset 10127

You must first sign up to be able to contribute.

Changeset 10127

Show
Ignore:
Timestamp:
07/04/08 23:02:40 (2 months ago)
Author:
fabien
Message:

sfGuardPlugin: fixed guard:promote task and added guard:add-permission and guard:add-group tasks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfGuardPlugin/branches/1.1/README

    r10126 r10127  
    388388=== 2.1.0-PRE === 
    389389 
    390   * fabien: added sf_guard_plugin_signin_form configuration 
     390  * fabien: fixed `guard:promote` task 
     391  * fabien: added `guard:add-permission` and `guard:add-group` tasks 
     392  * fabien: added `sf_guard_plugin_signin_form` configuration 
    391393  * fabien: optimized getAllPermissions() number of database requests (#3238) 
    392394  * fabien: added the user object as a third parameter when calling the `app_sf_guard_plugin_check_password_callable` callable (#3231) 
  • plugins/sfGuardPlugin/branches/1.1/lib/task/sfGuardCreateAdminTask.class.php

    r8637 r10127  
    6262    } 
    6363 
     64    $user->setIsSuperAdmin(true); 
     65    $user->save(); 
     66 
    6467    $this->logSection('guard', sprintf('Promote user %s as a super administrator', $arguments['username'])); 
    6568  }