diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-06 07:06:03 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-06 07:06:03 +0000 |
| commit | 88da3ce26d672c7e13eac3a4d5ef3f3bab26e247 (patch) | |
| tree | e95e57b2e1408b27a013a8f8871fda7a3c8940fa /roundcubemail/installer/config.php | |
| parent | a02d19822edb83b3dec33926d8a4aedb12605484 (diff) | |
- Add mdn_requests=3 to the installer
git-svn-id: https://svn.roundcube.net/trunk@4044 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/config.php')
| -rw-r--r-- | roundcubemail/installer/config.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php index 073b7b5b2..c9eeaebfc 100644 --- a/roundcubemail/installer/config.php +++ b/roundcubemail/installer/config.php @@ -571,8 +571,15 @@ echo $select_autosave->show(intval($RCI->getprop('draft_autosave'))); <dd> <?php +$mdn_opts = array( + 0 => 'ask the user', + 1 => 'send automatically', + 3 => 'send receipt to user contacts only', + 2 => 'ignore', +); + $select_mdnreq = new html_select(array('name' => '_mdn_requests', 'id' => "cfgmdnreq")); -$select_mdnreq->add(array('ask the user', 'send automatically', 'ignore'), array(0, 1, 2)); +$select_mdnreq->add(array_values($mdn_opts), array_keys($mdn_opts)); echo $select_mdnreq->show(intval($RCI->getprop('mdn_requests'))); ?> |
