Changeset 6015
- Timestamp:
- 07/14/08 18:27:30 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/components.class.php
r5903 r6015 646 646 $output = ''; 647 647 648 $count = 0; 648 649 foreach ($valarray as $item) { 649 650 $itemvalue = (isset($item['value']) ? $item['value'] : ''); … … 652 653 653 654 $tabindex = guielement::gettabindex(); 654 $output .= "<input type=\"radio\" name=\"$this->_elemname\" id=\"$this->_elemname\" tabindex=$tabindex value=\"$this->_elemname=$itemvalue\"$itemchecked/>$itemtext \n"; 655 $output .= "<input type=\"radio\" name=\"$this->_elemname\" id=\"$this->_elemname$count\" tabindex=$tabindex value=\"$this->_elemname=$itemvalue\"$itemchecked/>$itemtext \n"; 656 $count++; 655 657 } 656 658 return $output;
