Skip to content
Snippets Groups Projects
Commit eecc4006 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

p() and print_unescaped() also take arrays as parameter

This fixes some scrutinizer issues.
parent 9de3c1b5
Branches
No related tags found
No related merge requests found
......@@ -7,16 +7,17 @@
*/
/**
* Prints an XSS escaped string
* @param string $string the string which will be escaped and printed
* Prints a sanitized string
* @param string|array $string the string which will be escaped and printed
*/
function p($string) {
print(OC_Util::sanitizeHTML($string));
}
/**
* Prints an unescaped string
* @param string $string the string which will be printed as it is
* Prints an unsanitized string - usage of this function may result into XSS.
* Consider using p() instead.
* @param string|array $string the string which will be printed as it is
*/
function print_unescaped($string) {
print($string);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment