From 65d4b2448ba43fdfa61769a770786c1c47a43780 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 14 Sep 2012 22:21:35 +0300 Subject: [PATCH] Fix closing tag in definition list helper. --- laravel/html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/html.php b/laravel/html.php index e3b2a993..211e4022 100644 --- a/laravel/html.php +++ b/laravel/html.php @@ -367,7 +367,7 @@ public static function dl($list, $attributes = array()) $html .= '
'.static::entities($description).'
'; } - return ''.$html.''; + return ''.$html.''; } /**