Browse Source

Fix closing tag in definition list helper.

Franz Liedke 12 years ago
parent
commit
65d4b2448b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/html.php

+ 1 - 1
laravel/html.php

@@ -367,7 +367,7 @@ class HTML {
 			$html .= '<dd>'.static::entities($description).'</dd>';
 			$html .= '<dd>'.static::entities($description).'</dd>';
 		}
 		}
 		
 		
-		return '<dl'.static::attributes($attributes).'>'.$html.'</'.$type.'>';
+		return '<dl'.static::attributes($attributes).'>'.$html.'</dl>';
 	}
 	}
 
 
 	/**
 	/**