Browse Source

Revert "Added a function for handling HTML special characters"

This reverts commit b47fc6476ae30b8ba700d2883dbb4d77f758c682.
Carlos 12 years ago
parent
commit
23a25b9abb
1 changed files with 0 additions and 13 deletions
  1. 0 13
      laravel/html.php

+ 0 - 13
laravel/html.php

@@ -45,19 +45,6 @@ class HTML {
 		return html_entity_decode($value, ENT_QUOTES, Config::get('application.encoding'));
 	}
 
-	/**
-	 * Convert HTML special characters.
-	 * 
-	 * The encoding specified in the application configuration file will be used.
-	 * 
-	 * @param  string $value
-	 * @return string
-	 */
-	public static function specialchars($value)
-	{
-		return htmlspecialchars($value, ENT_QUOTES, Config::get('application.encoding', false));
-	}
-
 	/**
 	 * Generate a link to a JavaScript file.
 	 *