]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Removed stray paren in checkboxes.php
authorEvan Winslow <evan.b.winslow@gmail.com>
Tue, 19 Oct 2010 10:56:27 +0000 (10:56 +0000)
committerEvan Winslow <evan.b.winslow@gmail.com>
Tue, 19 Oct 2010 10:56:27 +0000 (10:56 +0000)
views/default/input/checkboxes.php

index 95460a6a877e544ad91562f888e31b564253f4ac..816d65680c16c31c5c38fcfcc25e01e22b23a257 100644 (file)
@@ -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'],