From 71386590808dc297529ad807740e980da97b568f Mon Sep 17 00:00:00 2001 From: Morris Jobke <hey@morrisjobke.de> Date: Mon, 23 Nov 2015 12:11:23 +0100 Subject: [PATCH] p() supports string as argument --- lib/private/template/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index 1c6eaa9a38..cea5860cec 100644 --- a/lib/private/template/functions.php +++ b/lib/private/template/functions.php @@ -30,7 +30,7 @@ /** * Prints a sanitized string - * @param string|array $string the string which will be escaped and printed + * @param string $string the string which will be escaped and printed */ function p($string) { print(OC_Util::sanitizeHTML($string)); -- GitLab