1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 11:10:18 +02:00

[ticket/13713] Implement ranks

PHPBB3-13713
This commit is contained in:
lavigor
2018-06-01 18:46:39 +03:00
committed by Marc Alexander
parent a176be4c1d
commit f775c1e79d
8 changed files with 55 additions and 12 deletions

View File

@@ -21,11 +21,11 @@ class friend extends user
/**
* Constructor
*/
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\user_loader $user_loader, \phpbb\user $user)
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\user_loader $user_loader, \phpbb\user $user, $phpbb_root_path, $phpEx)
{
$this->user = $user;
parent::__construct($db, $user_loader);
parent::__construct($db, $user_loader, $phpbb_root_path, $phpEx);
}
/**