diff options
| author | Henry Sudhof <kellanved@phpbb.com> | 2009-08-16 20:49:22 +0000 |
|---|---|---|
| committer | Henry Sudhof <kellanved@phpbb.com> | 2009-08-16 20:49:22 +0000 |
| commit | 389663872784bd4c411e9b3a813107ec51e70b11 (patch) | |
| tree | 5047279878b6dece5c26b26f580377018e49f79f /phpBB/includes/captcha/plugins/captcha_abstract.php | |
| parent | 4f2504bd56692bf43a964820dfa6ceaa664366a7 (diff) | |
| download | forums-389663872784bd4c411e9b3a813107ec51e70b11.tar forums-389663872784bd4c411e9b3a813107ec51e70b11.tar.gz forums-389663872784bd4c411e9b3a813107ec51e70b11.tar.bz2 forums-389663872784bd4c411e9b3a813107ec51e70b11.tar.xz forums-389663872784bd4c411e9b3a813107ec51e70b11.zip | |
append_sid
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9996 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha/plugins/captcha_abstract.php')
| -rw-r--r-- | phpBB/includes/captcha/plugins/captcha_abstract.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/captcha/plugins/captcha_abstract.php b/phpBB/includes/captcha/plugins/captcha_abstract.php index 08ca0a91e4..e5a4e299bd 100644 --- a/phpBB/includes/captcha/plugins/captcha_abstract.php +++ b/phpBB/includes/captcha/plugins/captcha_abstract.php @@ -95,7 +95,7 @@ class phpbb_default_captcha } else { - $link = append_sid($phpbb_root_path . 'ucp.' . $phpEx . '?mode=confirm&confirm_id=' . $this->confirm_id . '&type=' . $this->type); + $link = append_sid($phpbb_root_path . 'ucp.' . $phpEx, 'mode=confirm&confirm_id=' . $this->confirm_id . '&type=' . $this->type); $explain = ($this->type != CONFIRM_POST) ? sprintf($user->lang['CONFIRM_EXPLAIN'], '<a href="mailto:' . htmlspecialchars($config['board_contact']) . '">', '</a>') : $user->lang['POST_CONFIRM_EXPLAIN']; $template->assign_vars(array( @@ -129,7 +129,7 @@ class phpbb_default_captcha // acp_captcha has a delivery function; let's use it $template->assign_vars(array( - 'CONFIRM_IMAGE' => append_sid($phpbb_admin_path . 'index.' . $phpEx . '?captcha_demo=1&mode=visual&i=' . $id . '&select_captcha=' . $this->get_class_name()) . $variables, + 'CONFIRM_IMAGE' => append_sid($phpbb_admin_path . 'index.' . $phpEx, 'captcha_demo=1&mode=visual&i=' . $id . '&select_captcha=' . $this->get_class_name()) . $variables, 'CONFIRM_ID' => $this->confirm_id, )); |
