summaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-10-06 07:06:03 +0000
committeralecpl <alec@alec.pl>2010-10-06 07:06:03 +0000
commit50baa6c0c139a09e66d0b8c56c1e320a8d37989a (patch)
treeb5092a3c827180fb24cce38aeb16d7716822e187 /installer
parent6769ba767005b8adc93a077c04eb745502b01238 (diff)
- Add mdn_requests=3 to the installer
Diffstat (limited to 'installer')
-rw-r--r--installer/config.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/installer/config.php b/installer/config.php
index 073b7b5b2..c9eeaebfc 100644
--- a/installer/config.php
+++ b/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')));
?>