- Timestamp:
- 06/26/11 05:12:17 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/libraries/components.class.php
r12222 r12269 675 675 $itemvalue = (isset($item['value']) ? $item['value'] : ''); 676 676 $itemtext = (isset($item['text']) ? $item['text'] : ''); 677 $itemselected = ($currentvalue == $itemvalue) ? ' selected' : '';677 $itemselected = ($currentvalue === $itemvalue) ? ' selected' : ''; 678 678 679 679 $output .= "\t\t\t\t<option value=\"$itemvalue\"$itemselected>$itemtext</option>\n"; … … 720 720 $itemvalue = (isset($item['value']) ? $item['value'] : ''); 721 721 $itemtext = (isset($item['text']) ? $item['text'] : ''); 722 $itemchecked = ($currentvalue == $itemvalue) ? ' checked=checked' : '';722 $itemchecked = ($currentvalue === $itemvalue) ? ' checked=checked' : ''; 723 723 724 724 $tabindex = guielement::gettabindex();
