aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/radio.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/input/radio.php')
-rw-r--r--views/default/input/radio.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/input/radio.php b/views/default/input/radio.php
index 4ddbdf77f..be5554e8b 100644
--- a/views/default/input/radio.php
+++ b/views/default/input/radio.php
@@ -14,14 +14,14 @@
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
* @uses $vars['internalname'] The name of the input field
- * @uses $vars['options'] An array of strings representing the options for the radio field
+ * @uses $vars['options'] An array of strings representing the options for the radio field as "label" => option
*
*/
$class = $vars['class'];
if (!$class) $class = "input-radio";
- foreach($vars['options'] as $option => $label) {
+ foreach($vars['options'] as $label => $option) {
if ($option != $vars['value']) {
$selected = "";
} else {