diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-06 10:07:25 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-06 10:07:25 +0000 |
| commit | 15266fe42c8639cb0185ab6efa5c11611b9a476c (patch) | |
| tree | f1f6e33b7a51684d8901cd766550b7f580a83ef5 | |
| parent | b33f12ceb8b6265670d36a583203de294df628bc (diff) | |
- Plugin API: Add name and parent_name arguments to folder_form hook
git-svn-id: https://svn.roundcube.net/trunk@4739 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/steps/settings/edit_folder.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/settings/edit_folder.inc b/roundcubemail/program/steps/settings/edit_folder.inc index c57ec69d7..bc4310310 100644 --- a/roundcubemail/program/steps/settings/edit_folder.inc +++ b/roundcubemail/program/steps/settings/edit_folder.inc @@ -228,7 +228,8 @@ function rcube_folder_form($attrib) // Allow plugins to modify folder form content $plugin = $RCMAIL->plugins->exec_hook('folder_form', - array('form' => $form, 'options' => $options)); + array('form' => $form, 'options' => $options, + 'name' => $mbox_imap, 'parent_name' => $parent_imap)); $form = $plugin['form']; |
