From b90c6ddcc547d81356341c44be61f97ce350d5b6 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 29 Jun 2011 14:19:06 -0700 Subject: [PATCH] Fixing tabbing on HTML::entities method. --- system/html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/html.php b/system/html.php index 604a9ed2..f92a0e6a 100644 --- a/system/html.php +++ b/system/html.php @@ -10,7 +10,7 @@ class HTML { */ public static function entities($value) { - return htmlentities($value, ENT_QUOTES, Config::get('application.encoding'), false); + return htmlentities($value, ENT_QUOTES, Config::get('application.encoding'), false); } /**