diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2009-02-08 14:15:49 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2009-02-08 14:15:49 +0000 |
commit | 6f486b0499258d1a236837acae120274bb1832d1 (patch) | |
tree | 78aca5d7a4b321aee41032556b7208a9c40034f8 /phpBB/includes/acp/acp_captcha.php | |
parent | 12c605755f933761e29b5c357298f9287b18e342 (diff) | |
download | forums-6f486b0499258d1a236837acae120274bb1832d1.tar forums-6f486b0499258d1a236837acae120274bb1832d1.tar.gz forums-6f486b0499258d1a236837acae120274bb1832d1.tar.bz2 forums-6f486b0499258d1a236837acae120274bb1832d1.tar.xz forums-6f486b0499258d1a236837acae120274bb1832d1.zip |
and another CAPTCHA setting - add new noise shapes to the noise array for more variations.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9320 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_captcha.php')
-rw-r--r-- | phpBB/includes/acp/acp_captcha.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_captcha.php b/phpBB/includes/acp/acp_captcha.php index 8b5cf19ee7..4d5c356fbe 100644 --- a/phpBB/includes/acp/acp_captcha.php +++ b/phpBB/includes/acp/acp_captcha.php @@ -28,13 +28,14 @@ class acp_captcha global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx; $user->add_lang('acp/board'); - $captcha_vars = array( 'captcha_gd_x_grid' => 'CAPTCHA_GD_X_GRID', 'captcha_gd_y_grid' => 'CAPTCHA_GD_Y_GRID', 'captcha_gd_foreground_noise' => 'CAPTCHA_GD_FOREGROUND_NOISE', 'captcha_gd' => 'CAPTCHA_GD_PREVIEWED', 'captcha_gd_wave' => 'CAPTCHA_GD_WAVE', + 'captcha_gd_3d_noise' => 'CAPTCHA_GD_3D_NOISE', + ); if (isset($_GET['demo'])) |