aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_captcha.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-07-04 03:54:41 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-07-04 03:54:41 +0000
commit6a1f1f57213c69219850785cbca3b67e782a2cca (patch)
tree42b78d58547e7a377e89ef5431971b2c94bcf85f /phpBB/includes/acp/acp_captcha.php
parent5ccfc08d097b14f08c4276d12ac5b7e91e89490e (diff)
downloadforums-6a1f1f57213c69219850785cbca3b67e782a2cca.tar
forums-6a1f1f57213c69219850785cbca3b67e782a2cca.tar.gz
forums-6a1f1f57213c69219850785cbca3b67e782a2cca.tar.bz2
forums-6a1f1f57213c69219850785cbca3b67e782a2cca.tar.xz
forums-6a1f1f57213c69219850785cbca3b67e782a2cca.zip
- CAPTCHA: removed the extra slash
More backup stuff - Made some things nicer for some of the DBs - Made postgreSQL work on non empty databases - Made SQLite ultra fast on restore - Properly escaped (as far as I know) the profile data fields so that one may now use reserved words as column names git-svn-id: file:///svn/phpbb/trunk@6144 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_captcha.php')
-rw-r--r--phpBB/includes/acp/acp_captcha.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_captcha.php b/phpBB/includes/acp/acp_captcha.php
index e20937102c..8aaca2d3dd 100644
--- a/phpBB/includes/acp/acp_captcha.php
+++ b/phpBB/includes/acp/acp_captcha.php
@@ -71,7 +71,7 @@ class acp_captcha
$template->assign_var('GD', true);
foreach ($policy_modules as $module_name)
{
- $template->assign_var('U_' . strtoupper($module_name), sprintf($user->lang['CAPTCHA_EXPLAIN'], '<a href="' . append_sid("{$phpbb_root_path}/adm/index.$phpEx", 'i=captcha&amp;mode=img&amp;policy=' . $module_name) . '" target="_blank">', '</a>'));
+ $template->assign_var('U_' . strtoupper($module_name), sprintf($user->lang['CAPTCHA_EXPLAIN'], '<a href="' . append_sid("{$phpbb_root_path}adm/index.$phpEx", 'i=captcha&amp;mode=img&amp;policy=' . $module_name) . '" target="_blank">', '</a>'));
}
if (function_exists('imagettfbbox') && function_exists('imagettftext'))
{