diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-02-03 14:42:42 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-03-24 17:08:55 +0100 |
commit | ca883f119614bf636802320e60822e1ed4992f2e (patch) | |
tree | 02b8413f05ce2f2b16db7a9f2d647d132551087f /phpBB/phpbb/auth/provider/base.php | |
parent | 3d0153de605d8a37e233df4db8abd66216623d2e (diff) | |
download | forums-ca883f119614bf636802320e60822e1ed4992f2e.tar forums-ca883f119614bf636802320e60822e1ed4992f2e.tar.gz forums-ca883f119614bf636802320e60822e1ed4992f2e.tar.bz2 forums-ca883f119614bf636802320e60822e1ed4992f2e.tar.xz forums-ca883f119614bf636802320e60822e1ed4992f2e.zip |
[ticket/13564] Allow to specify user id for retrieving auth link data
PHPBB3-13564
Diffstat (limited to 'phpBB/phpbb/auth/provider/base.php')
-rw-r--r-- | phpBB/phpbb/auth/provider/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/base.php b/phpBB/phpbb/auth/provider/base.php index 4c49070eaf..dea27ccc25 100644 --- a/phpBB/phpbb/auth/provider/base.php +++ b/phpBB/phpbb/auth/provider/base.php @@ -61,7 +61,7 @@ abstract class base implements \phpbb\auth\provider\provider_interface /** * {@inheritdoc} */ - public function get_auth_link_data() + public function get_auth_link_data($user_id = 0) { return; } |