aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-09-27 09:48:37 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-09-27 09:48:37 +0000
commitee22f2709cb3b459f0e462e0969289490c08b309 (patch)
tree71396a09ee68b2d20a7af33f39a88c406eb90f42 /phpBB/admin
parent131d2ed20e61f84f698a9017142f2764e62e88c3 (diff)
downloadforums-ee22f2709cb3b459f0e462e0969289490c08b309.tar
forums-ee22f2709cb3b459f0e462e0969289490c08b309.tar.gz
forums-ee22f2709cb3b459f0e462e0969289490c08b309.tar.bz2
forums-ee22f2709cb3b459f0e462e0969289490c08b309.tar.xz
forums-ee22f2709cb3b459f0e462e0969289490c08b309.zip
Finished up COPPA support (I hope), now has a form the parents can print and sign and added config areas for mailing address and fax number.
git-svn-id: file:///svn/phpbb/trunk@1096 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin')
-rw-r--r--phpBB/admin/admin_board.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/admin/admin_board.php b/phpBB/admin/admin_board.php
index 78a71c9b2a..ddce69b9a2 100644
--- a/phpBB/admin/admin_board.php
+++ b/phpBB/admin/admin_board.php
@@ -102,6 +102,13 @@ $template->set_filenames(array(
$template->assign_vars(array(
"S_CONFIG_ACTION" => append_sid("admin_board.$phpEx"),
"SITENAME" => $new['sitename'],
+ "L_YES" => $lang['Yes'],
+ "L_NO" => $lang['No'],
+ "L_CONFIGURATION_TITLE" => $lang['General_Config'],
+ "L_CONFIGURATION_EXPLAIN" => $lang['Config_explain'],
+ "L_GENERAL_SETTINGS" => $lang['General_settings'],
+ "L_SITE_NAME" => $lang['Site_name'],
+ "L_ACCT_ACTIVATION" => $lang['Acct_activation'],
"ACTIVATION_NONE" => USER_ACTIVATION_NONE,
"ACTIVATION_NONE_CHECKED" => $activation_none,
"ACTIVATION_USER" => USER_ACTIVATION_SELF,
@@ -148,7 +155,9 @@ $template->assign_vars(array(
"EMAIL_SIG" => $new['board_email_sig'],
"SMTP_YES" => $smtp_yes,
"SMTP_NO" => $smtp_no,
- "SMTP_HOST" => $new['smtp_host'])
+ "SMTP_HOST" => $new['smtp_host'],
+ "COPPA_MAIL" => $new['coppa_mail'],
+ "COPPA_FAX" => $new['coppa_fax'])
);
$template->pparse("body");