form_dropdown() will now also take an array for unity with other form helpers., codestyle cleanup only
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php
index efe5dbc..ab3a129 100644
--- a/system/helpers/form_helper.php
+++ b/system/helpers/form_helper.php
@@ -315,7 +315,7 @@
 	function form_dropdown($name = '', $options = array(), $selected = array(), $extra = '')
 	{
     // If name is really an array then we'll call the function again using the array
-    if (is_array($name)) 
+    if (is_array($name))
     {
       if ( ! isset($name['options'])) 
       {