Changeset 4044 in subversion


Ignore:
Timestamp:
Oct 6, 2010 3:06:03 AM (3 years ago)
Author:
alec
Message:
  • Add mdn_requests=3 to the installer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/installer/config.php

    r3989 r4044  
    572572<?php 
    573573 
     574$mdn_opts = array( 
     575    0 => 'ask the user', 
     576    1 => 'send automatically', 
     577    3 => 'send receipt to user contacts only', 
     578    2 => 'ignore', 
     579); 
     580 
    574581$select_mdnreq = new html_select(array('name' => '_mdn_requests', 'id' => "cfgmdnreq")); 
    575 $select_mdnreq->add(array('ask the user', 'send automatically', 'ignore'), array(0, 1, 2)); 
     582$select_mdnreq->add(array_values($mdn_opts), array_keys($mdn_opts)); 
    576583echo $select_mdnreq->show(intval($RCI->getprop('mdn_requests'))); 
    577584 
Note: See TracChangeset for help on using the changeset viewer.