Browse Source

Add support for nested ul and ol lists.

Taylor Otwell 13 years ago
parent
commit
e0a8d173bd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      system/html.php

+ 2 - 2
system/html.php

@@ -195,13 +195,13 @@ class HTML {
 	 * @param  array   $attributes
 	 * @return string
 	 */
-	private static function list_elements($type, $list, $attributes)
+	private static function list_elements($type, $list, $attributes = array())
 	{
 		$html = '';
 
 		foreach ($list as $key => $value)
 		{
-			$html .= '<li>'.static::entities($value).'</li>';
+			$html .= (is_array($value)) ? static::list_elements($type, $value) : '<li>'.static::entities($value).'</li>';
 		}
 
 		return '<'.$type.static::attributes($attributes).'>'.$html.'</'.$type.'>';