Skip to content
Snippets Groups Projects
Commit f11e4d7c authored by Björn Schießle's avatar Björn Schießle
Browse files

removing sanitizeHTML() function from template.php since I moved it to util.php

to make it more generic.
parent 4b6f6291
Branches
No related tags found
No related merge requests found
......@@ -313,17 +313,6 @@ class OC_Template{
return true;
}
/**
* @brief Internaly used to sanitze HTML
*
* This function is internally used to sanitize HTML.
*/
private static function sanitizeHTML( &$value ){
$value = htmlentities( $value , ENT_QUOTES, 'UTF-8'); //Specify encoding for PHP<5.4
return $value;
}
/**
* @brief Appends a variable
* @param $key key
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment