diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-23 13:32:46 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-23 13:32:46 +0100 |
commit | 021137d7ae3b219178da123ab3f839503e976947 (patch) | |
tree | ffa4f8a0520fef4e62068465c6cf23a656325309 | |
parent | df906f475bbf22788620ef05a58231639b5423ad (diff) | |
parent | 71386590808dc297529ad807740e980da97b568f (diff) | |
download | nextcloud-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.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)); |