diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-11-23 12:11:23 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-11-23 12:11:23 +0100 |
commit | 71386590808dc297529ad807740e980da97b568f (patch) | |
tree | 4c12f29788f4cfb4b9f92725050071816af1396a /lib | |
parent | bf672d7e51bd3411130a3c3a41a931fb3d23ff68 (diff) | |
download | nextcloud-server-71386590808dc297529ad807740e980da97b568f.tar.gz nextcloud-server-71386590808dc297529ad807740e980da97b568f.zip |
p() supports string as argument
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/template/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index 1c6eaa9a389..cea5860cec6 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)); |