[ticket/16346] More fixes

PHPBB3-16346
This commit is contained in:
rubencm 2020-08-09 15:06:42 +00:00
parent 0478ccee89
commit 4156204419
4 changed files with 8 additions and 10 deletions

View file

@ -289,7 +289,6 @@ services:
class: phpbb\console\command\user\activate
arguments:
- '@user'
- '@dbal.conn'
- '@config'
- '@language'
- '@log'
@ -317,7 +316,6 @@ services:
class: phpbb\console\command\user\delete
arguments:
- '@user'
- '@dbal.conn'
- '@language'
- '@log'
- '@user_loader'

View file

@ -682,7 +682,7 @@ function phpbb_mcp_sorting($mode, &$sort_days_val, &$sort_key_val, &$sort_dir_va
* @param array &$ids The relevant ids to check
* @param string $table The table to find the ids in
* @param string $sql_id The ids relevant column name
* @param array $acl_list A list of permissions the user need to have
* @param array|false $acl_list A list of permissions the user need to have
* @param mixed $single_forum Limit to one forum id (int) or the first forum found (true)
*
* @return mixed False if no ids were able to be retrieved, true if at least one id left.

View file

@ -19,7 +19,7 @@ use phpbb\language\language;
* Responsible for holding all file relevant information, as well as doing file-specific operations.
* The {@link fileupload fileupload class} can be used to upload several files, each of them being this object to operate further on.
*
* @deprecated
* @deprecated 4.0.0 Use phpbb\files\filespec_storage instead
*/
class filespec
{