diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2018-12-24 15:32:50 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2018-12-24 15:32:50 +0100 |
| commit | 58856c06b046dda473a7c0c14d5b0459ad161185 (patch) | |
| tree | 1532d1bca27bd2ef797dc73d6a38c8570ba3e48f /phpBB/phpbb/captcha/plugins/qa.php | |
| parent | ca98cd413a6f01eb01e3ca60cea9b55409dadc61 (diff) | |
| parent | 83f4074116e646507bbb448f745e0d9b356aa593 (diff) | |
| download | forums-58856c06b046dda473a7c0c14d5b0459ad161185.tar forums-58856c06b046dda473a7c0c14d5b0459ad161185.tar.gz forums-58856c06b046dda473a7c0c14d5b0459ad161185.tar.bz2 forums-58856c06b046dda473a7c0c14d5b0459ad161185.tar.xz forums-58856c06b046dda473a7c0c14d5b0459ad161185.zip | |
Merge pull request #5481 from kasimi/ticket/15910-3.2.x
[ticket/15910] Pass object arguments by reference implicitly
Diffstat (limited to 'phpBB/phpbb/captcha/plugins/qa.php')
| -rw-r--r-- | phpBB/phpbb/captcha/plugins/qa.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/captcha/plugins/qa.php b/phpBB/phpbb/captcha/plugins/qa.php index 7797212ac9..8f41434601 100644 --- a/phpBB/phpbb/captcha/plugins/qa.php +++ b/phpBB/phpbb/captcha/plugins/qa.php @@ -638,7 +638,7 @@ class qa /** * API function - The ACP backend, this marks the end of the easy methods */ - function acp_page($id, &$module) + function acp_page($id, $module) { global $config, $request, $phpbb_log, $template, $user; @@ -776,7 +776,7 @@ class qa /** * This handles the list overview */ - function acp_question_list(&$module) + function acp_question_list($module) { global $db, $template; |
