Browse Source

Fixing tabbing on HTML::entities method.

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

+ 1 - 1
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);
 	}
 
 	/**