Changeset 5293
- Timestamp:
- 11/25/07 18:09:54 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/functions.inc.php
r5275 r5293 1627 1627 // esnure that any form that includes this calls the setDestinations() javascript function on submit. 1628 1628 // ie: if the form name is "edit", and drawselects has been called with $i=2 then use onsubmit="setDestinations(edit,2)" 1629 function drawselects($goto,$i ) {1629 function drawselects($goto,$i,$show_custom=false) { 1630 1630 1631 1631 /* --- MODULES BEGIN --- */ … … 1695 1695 1696 1696 //display a custom goto field 1697 if ($custom_selected ) {1697 if ($custom_selected || $show_custom) { 1698 1698 $radioid = uniqid("drawselect"); 1699 1699 $selectHtml .= '<input type="radio" id="'.$radioid.'" name="goto'.$i.'" value="custom" '.
