aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-11-23 13:32:46 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-11-23 13:32:46 +0100
commit021137d7ae3b219178da123ab3f839503e976947 (patch)
treeffa4f8a0520fef4e62068465c6cf23a656325309
parentdf906f475bbf22788620ef05a58231639b5423ad (diff)
parent71386590808dc297529ad807740e980da97b568f (diff)
downloadnextcloud-server-021137d7ae3b219178da123ab3f839503e976947.tar.gz
nextcloud-server-021137d7ae3b219178da123ab3f839503e976947.zip
Merge pull request #20679 from owncloud/fixphpdoc
p() supports string as argument
-rw-r--r--lib/private/template/functions.php2
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));