diff options
Diffstat (limited to 'views/failsafe')
-rw-r--r-- | views/failsafe/input/checkboxes.php | 6 |
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; } |