Changeset 5921
- Timestamp:
- 07/06/08 01:19:52 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/functions.inc.php
r5871 r5921 1637 1637 // ie: if the form name is "edit", and drawselects has been called with $i=2 then use onsubmit="setDestinations(edit,2)" 1638 1638 function drawselects($goto,$i,$show_custom=false) { 1639 global $tabindex; 1639 1640 1640 1641 /* --- MODULES BEGIN --- */ … … 1682 1683 $cat_identifier = preg_replace('/[^a-zA-Z0-9]/','_', $cat); 1683 1684 1684 $selectHtml .= '<input type="radio" id="'.$radioid.'" name="goto'.$i.'" value="'.$cat_identifier.'" '. 1685 $tabindex_txt = (isset($tabindex) && $tabindex != '') ? ' tabindex="'.++$tabindex.'" ':''; 1686 $selectHtml .= '<input type="radio" '.$tabindex_txt.'id="'.$radioid.'" name="goto'.$i.'" value="'.$cat_identifier.'" '. 1685 1687 //'onclick="javascript:this.form.goto'.$i.'.value=\''.$cat.'\';" '. 1686 1688 //'onkeypress="javascript:if (event.keyCode == 0 || (document.all && event.keyCode == 13)) this.form.goto'.$i.'.value=\''.$cat.'\';" '.
