From: Henry S. <kel...@ph...> - 2009-08-14 10:12:20
|
Author: Kellanved Date: Fri Aug 14 11:11:34 2009 New Revision: 9976 Log: add back links Modified: branches/phpBB-3_0_0/phpBB/adm/style/captcha_gd_acp.html branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php Modified: branches/phpBB-3_0_0/phpBB/adm/style/captcha_gd_acp.html ============================================================================== *** branches/phpBB-3_0_0/phpBB/adm/style/captcha_gd_acp.html (original) --- branches/phpBB-3_0_0/phpBB/adm/style/captcha_gd_acp.html Fri Aug 14 11:11:34 2009 *************** *** 1,6 **** --- 1,7 ---- <!-- INCLUDE overall_header.html --> <a name="maincontent"></a> + <a href="{U_ACTION}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a> <h1>{L_ACP_VC_SETTINGS}</h1> Modified: branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php ============================================================================== *** branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php (original) --- branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php Fri Aug 14 11:11:34 2009 *************** *** 140,145 **** --- 140,146 ---- $template->assign_vars(array( 'CAPTCHA_PREVIEW' => $this->get_demo_template($id), 'CAPTCHA_NAME' => $this->get_class_name(), + 'U_ACTION' => $module->u_action, )); } } Modified: branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php ============================================================================== *** branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php (original) --- branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php Fri Aug 14 11:11:34 2009 *************** *** 117,122 **** --- 117,123 ---- $template->assign_vars(array( 'CAPTCHA_PREVIEW' => $this->get_demo_template($id), 'CAPTCHA_NAME' => $this->get_class_name(), + 'U_ACTION' => $module->u_action, )); } |