aboutsummaryrefslogtreecommitdiff
path: root/views/installation/input/checkboxes.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/installation/input/checkboxes.php')
-rw-r--r--views/installation/input/checkboxes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/installation/input/checkboxes.php b/views/installation/input/checkboxes.php
index 04533f6f5..164509831 100644
--- a/views/installation/input/checkboxes.php
+++ b/views/installation/input/checkboxes.php
@@ -8,7 +8,7 @@
*
* @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['name'] The name of the input field
* @uses $vars['options'] An array of strings representing the options for the checkbox field
*
*/
@@ -44,5 +44,5 @@ foreach($vars['options'] as $label => $option) {
if ($vars['disabled']) {
$disabled = ' disabled="yes" ';
}
- echo "<label><input type=\"checkbox\" $disabled {$vars['js']} name=\"{$vars['internalname']}[]\" {$selected} value=\"".htmlentities($option, ENT_QUOTES, 'UTF-8')."\" {$selected} class=\"$class\" />{$label}</label><br />";
+ echo "<label><input type=\"checkbox\" $disabled {$vars['js']} name=\"{$vars['name']}[]\" {$selected} value=\"".htmlentities($option, ENT_QUOTES, 'UTF-8')."\" {$selected} class=\"$class\" />{$label}</label><br />";
} \ No newline at end of file