diff options
author | thomascube <thomas@roundcube.net> | 2010-03-31 14:53:02 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-03-31 14:53:02 +0000 |
commit | 3baa72a62fc69dda8306674da6d150efbf2cd55b (patch) | |
tree | 55b07dc6eebaf0510575f376f1e4664246f8ef69 /index.php | |
parent | 4cdc70941d5d25f47f920c6ba62035d2e6978454 (diff) |
Implement group renaming/deleting + use more consistent names for commands and actions (#1486587)
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -217,10 +217,11 @@ $action_map = array( 'addressbook' => array( 'add' => 'edit.inc', - 'create-group' => 'groups.inc', - 'delete-group' => 'groups.inc', - 'removefromgroup' => 'groups.inc', - 'add2group' => 'groups.inc', + 'group-create' => 'groups.inc', + 'group-rename' => 'groups.inc', + 'group-delete' => 'groups.inc', + 'group-addmember' => 'groups.inc', + 'group-delmenber' => 'groups.inc', ), 'settings' => array( |