aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorn-aleha <nick_aleha@myway.com>2014-05-24 16:55:52 +0300
committern-aleha <nick_aleha@myway.com>2014-08-03 07:13:20 +0300
commit95ec9590dfd2e93a75383745f385aaa3493ed857 (patch)
treef10ec7c16d0cbf9411f1e07d8fc076eebbdd8bc6 /phpBB/includes
parent6ac8d17af66900c87b4524c92e0cc26535ded7b0 (diff)
downloadforums-95ec9590dfd2e93a75383745f385aaa3493ed857.tar
forums-95ec9590dfd2e93a75383745f385aaa3493ed857.tar.gz
forums-95ec9590dfd2e93a75383745f385aaa3493ed857.tar.bz2
forums-95ec9590dfd2e93a75383745f385aaa3493ed857.tar.xz
forums-95ec9590dfd2e93a75383745f385aaa3493ed857.zip
[ticket/12557] Fix doc block errors found by Sami
PHPBB3-12557
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions_upload.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php
index be4bedd2ca..04516ace9d 100644
--- a/phpBB/includes/functions_upload.php
+++ b/phpBB/includes/functions_upload.php
@@ -500,8 +500,8 @@ class fileupload
* @param int $min_height Minimum image height (only checked for images)
* @param int $max_width Maximum image width (only checked for images)
* @param int $max_height Maximum image height (only checked for images)
- * @param bool|array $disallowed_content If enabled, the first 256 bytes of the file must not contain any of it's values.
- * Defaults to false.
+ * @param bool|array $disallowed_content If enabled, the first 256 bytes of the file must not
+ * contain any of its values. Defaults to false.
*
*/
function fileupload($error_prefix = '', $allowed_extensions = false, $max_filesize = false, $min_width = false, $min_height = false, $max_width = false, $max_height = false, $disallowed_content = false)