From: Evan Winslow Date: Tue, 19 Oct 2010 10:56:27 +0000 (+0000) Subject: Removed stray paren in checkboxes.php X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=2f69470d927c102216383077e3f7f3e70054bd24;p=lorea%2Felgg.git Removed stray paren in checkboxes.php --- diff --git a/views/default/input/checkboxes.php b/views/default/input/checkboxes.php index 95460a6a8..816d65680 100644 --- a/views/default/input/checkboxes.php +++ b/views/default/input/checkboxes.php @@ -44,7 +44,7 @@ if ($options) { foreach($options as $option => $label) { $opts = array( 'value' => $option, - 'checked' => in_array(strtolower($option), $value_array)), + 'checked' => in_array(strtolower($option), $value_array), 'class' => $args['class'], 'disabled' => $args['disabled'], 'js' => $args['js'],