Changeset 3702 in subversion


Ignore:
Timestamp:
Jun 3, 2010 4:09:46 AM (3 years ago)
Author:
alec
Message:
  • support dynamic hostname variables in config
Location:
trunk/roundcubemail/installer
Files:
2 edited

Legend:

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

    r3556 r3702  
    467467    foreach ($default_hosts as $key => $name) { 
    468468      if (!empty($name)) 
    469         $out[] = is_numeric($key) ? $name : $key; 
     469        $out[] = rcube_parse_host(is_numeric($key) ? $name : $key); 
    470470    } 
    471471     
  • trunk/roundcubemail/installer/test.php

    r3667 r3702  
    215215 
    216216<p> 
    217 Server: <?php echo $RCI->getprop('smtp_server', 'PHP mail()'); ?><br /> 
     217Server: <?php echo rcube_parse_host($RCI->getprop('smtp_server', 'PHP mail()')); ?><br /> 
    218218Port: <?php echo $RCI->getprop('smtp_port'); ?><br /> 
    219219 
Note: See TracChangeset for help on using the changeset viewer.