Browse Source

cleaning up form class.

Taylor Otwell 13 years ago
parent
commit
c3f418b13c
1 changed files with 4 additions and 5 deletions
  1. 4 5
      system/form.php

+ 4 - 5
system/form.php

@@ -464,13 +464,12 @@ class Form {
 
 		$html_options = array();
 
+		// -------------------------------------------------------
+		// Build the HTML options for the drop-down.
+		// -------------------------------------------------------
 		foreach ($options as $value => $display)
 		{
-			$option_attributes = array();
-
-			$option_attributes['value'] = HTML::entities($value);
-			$option_attributes['selected'] = ($value == $selected) ? 'selected' : null;
-
+			$option_attributes = array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null);
 			$html_options[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
 		}