1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-31 05:53:14 +02:00

Merge pull request #5797 from marc1706/ticket/16271

[ticket/16271] Fix sami parse errors in master
This commit is contained in:
Marc Alexander 2019-12-29 15:08:35 +01:00 committed by GitHub
commit bfaeabe9e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -192,7 +192,7 @@ class acp_storage
/**
* Get the current provider from config
*
* @param string $key Storage name
* @param string $storage_name Storage name
* @return string The current provider
*/
protected function get_current_provider($storage_name)
@ -203,7 +203,7 @@ class acp_storage
/**
* Get the new provider from the request
*
* @param string $key Storage name
* @param string $storage_name Storage name
* @return string The new provider
*/
protected function get_new_provider($storage_name)

View File

@ -84,6 +84,7 @@ class upload
* @param guesser $mimetype_guesser
* @param dispatcher $phpbb_dispatcher
* @param plupload $plupload
* @param storage $storage
* @param temp $temp
* @param user $user
*/

View File

@ -382,6 +382,7 @@ class filespec_storage
/**
* Move file to destination folder
*
* @param \phpbb\storage\storage $storage
* @param bool $overwrite If set to true, an already existing file will be overwritten
* @param bool $skip_image_check If set to true, the check for the file to be a valid image is skipped
*