1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12557] Fix doc block errors found by Sami

PHPBB3-12557
This commit is contained in:
n-aleha
2014-05-24 16:55:52 +03:00
parent 6ac8d17af6
commit 95ec9590df
3 changed files with 9 additions and 8 deletions

View File

@@ -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)