aboutsummaryrefslogtreecommitdiff
path: root/views/failsafe/input/checkboxes.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/failsafe/input/checkboxes.php')
-rw-r--r--views/failsafe/input/checkboxes.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/views/failsafe/input/checkboxes.php b/views/failsafe/input/checkboxes.php
index 0cc32958f..0792f09ce 100644
--- a/views/failsafe/input/checkboxes.php
+++ b/views/failsafe/input/checkboxes.php
@@ -35,8 +35,10 @@ foreach($vars['options'] as $label => $option) {
$selected = "checked = \"checked\"";
}
}
- $labelint = (int) $label;
- if ("{$label}" == "{$labelint}") {
+
+ // handle indexed array where label is not specified
+ // @todo deprecate in Elgg 1.8
+ if (is_integer($label)) {
$label = $option;
}