Many new Active Record functions, and another whack of stuff
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php
index 9f3509d..c3a3ccb 100644
--- a/system/helpers/form_helper.php
+++ b/system/helpers/form_helper.php
@@ -231,7 +231,7 @@
 	}

 

 	if ($extra != '') $extra = ' '.$extra;

-	$multiple = (count($selected) > 1))?' multiple="multiple"':'';

+	$multiple = (count($selected) > 1) ? ' multiple="multiple"' : '';

 

 	$form = '<select name="'.$name.'"'.$extra.$multiple.">\n";