Update of /cvsroot/phpbb-php5mod/phpbb-php5/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27345/admin
Modified Files:
admin_board.php admin_user_ban.php
Log Message:
Updating to phpBB 2.0.11
A few minor changes otherwise
Preparing for 2.0.11.2 release
Index: admin_user_ban.php
===================================================================
RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/admin/admin_user_ban.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** admin_user_ban.php 30 Jul 2004 02:12:37 -0000 1.2
--- admin_user_ban.php 20 Nov 2004 01:01:09 -0000 1.3
***************
*** 245,249 ****
}
}
!
for($i = 0; $i < count($email_list); $i++)
{
--- 245,249 ----
}
}
! print_r($email_list);
for($i = 0; $i < count($email_list); $i++)
{
***************
*** 450,452 ****
include('./page_footer_admin.'.$phpEx);
! ?>
\ No newline at end of file
--- 450,452 ----
include('./page_footer_admin.'.$phpEx);
! ?>
Index: admin_board.php
===================================================================
RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/admin/admin_board.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** admin_board.php 30 Jul 2004 02:12:37 -0000 1.2
--- admin_board.php 20 Nov 2004 01:01:05 -0000 1.3
***************
*** 98,101 ****
--- 98,104 ----
$activation_admin = ( $new['require_activation'] == USER_ACTIVATION_ADMIN ) ? "checked=\"checked\"" : "";
+ $confirm_yes = ($new['enable_confirm']) ? 'checked="checked"' : '';
+ $confirm_no = (!$new['enable_confirm']) ? 'checked="checked"' : '';
+
$board_email_form_yes = ( $new['board_email_form'] ) ? "checked=\"checked\"" : "";
$board_email_form_no = ( !$new['board_email_form'] ) ? "checked=\"checked\"" : "";
***************
*** 161,164 ****
--- 164,169 ----
"L_USER" => $lang['Acc_User'],
"L_ADMIN" => $lang['Acc_Admin'],
+ "L_VISUAL_CONFIRM" => $lang['Visual_confirm'],
+ "L_VISUAL_CONFIRM_EXPLAIN" => $lang['Visual_confirm_explain'],
"L_COOKIE_SETTINGS" => $lang['Cookie_settings'],
"L_COOKIE_SETTINGS_EXPLAIN" => $lang['Cookie_settings_explain'],
|