You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(193) |
Nov
(393) |
Dec
(347) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(401) |
Feb
(232) |
Mar
(343) |
Apr
(129) |
May
(129) |
Jun
(116) |
Jul
(189) |
Aug
(129) |
Sep
(68) |
Oct
(172) |
Nov
(298) |
Dec
(148) |
| 2003 |
Jan
(264) |
Feb
(210) |
Mar
(322) |
Apr
(309) |
May
(234) |
Jun
(188) |
Jul
(215) |
Aug
(161) |
Sep
(234) |
Oct
(163) |
Nov
(110) |
Dec
(7) |
| 2004 |
Jan
(95) |
Feb
(107) |
Mar
(55) |
Apr
(3) |
May
(49) |
Jun
(35) |
Jul
(57) |
Aug
(43) |
Sep
(56) |
Oct
(40) |
Nov
(25) |
Dec
(21) |
| 2005 |
Jan
(93) |
Feb
(25) |
Mar
(22) |
Apr
(72) |
May
(45) |
Jun
(24) |
Jul
(29) |
Aug
(20) |
Sep
(50) |
Oct
(93) |
Nov
(69) |
Dec
(183) |
| 2006 |
Jan
(185) |
Feb
(143) |
Mar
(402) |
Apr
(260) |
May
(322) |
Jun
(367) |
Jul
(234) |
Aug
(299) |
Sep
(206) |
Oct
(288) |
Nov
(338) |
Dec
(307) |
| 2007 |
Jan
(296) |
Feb
(250) |
Mar
(261) |
Apr
(434) |
May
(539) |
Jun
(274) |
Jul
(440) |
Aug
(190) |
Sep
(128) |
Oct
(249) |
Nov
(86) |
Dec
(51) |
| 2008 |
Jan
(177) |
Feb
(67) |
Mar
(61) |
Apr
(48) |
May
(56) |
Jun
(97) |
Jul
(60) |
Aug
(64) |
Sep
(151) |
Oct
(79) |
Nov
(109) |
Dec
(123) |
| 2009 |
Jan
(70) |
Feb
(70) |
Mar
(73) |
Apr
(80) |
May
(22) |
Jun
(193) |
Jul
(191) |
Aug
(181) |
Sep
(120) |
Oct
(48) |
Nov
(24) |
Dec
|
|
From: Paul S. O. <ps...@us...> - 2002-03-25 12:39:20
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv11518/includes
Modified Files:
functions.php
Log Message:
Fix bad word cockup ... oh look the censor failed and let cockup through, oh, and again ... geez sourceforge needs better censors for its CVS system
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.129
retrieving revision 1.130
diff -C2 -r1.129 -r1.130
*** functions.php 23 Mar 2002 23:12:31 -0000 1.129
--- functions.php 25 Mar 2002 12:39:17 -0000 1.130
***************
*** 446,451 ****
do
{
! $orig_word[] = '#(\W)' . str_replace('\*', '\w*?', preg_quote($row['word']) ) . '(\W)#is';
! $replacement_word[] = '\1' . $row['replacement'] . '\2';
}
while ( $row = $db->sql_fetchrow($result) );
--- 446,451 ----
do
{
! $orig_word[] = "#\b(" . str_replace("\*", "\w*?", phpbb_preg_quote($row['word'], "#")) . ")\b#i";
! $replacement_word[] = $row['replacement'];
}
while ( $row = $db->sql_fetchrow($result) );
|
|
From: Bart v. B. <ba...@us...> - 2002-03-24 20:58:37
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv18696
Modified Files:
admin_ug_auth.php
Log Message:
Show groupname, bug #534414
Index: admin_ug_auth.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_ug_auth.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** admin_ug_auth.php 23 Mar 2002 22:21:33 -0000 1.10
--- admin_ug_auth.php 24 Mar 2002 20:58:33 -0000 1.11
***************
*** 763,766 ****
--- 763,770 ----
$s_user_type = ( $is_admin ) ? '<select name="userlevel"><option value="admin" selected="selected">' . $lang['Auth_Admin'] . '</option><option value="user">' . $lang['Auth_User'] . '</option></select>' : '<select name="userlevel"><option value="admin">' . $lang['Auth_Admin'] . '</option><option value="user" selected="selected">' . $lang['Auth_User'] . '</option></select>';
}
+ else
+ {
+ $t_groupname = $ug_info[0]['group_name'];
+ }
$name = array();
***************
*** 931,933 ****
include('page_footer_admin.'.$phpEx);
! ?>
\ No newline at end of file
--- 935,937 ----
include('page_footer_admin.'.$phpEx);
! ?>
|
|
From: Bart v. B. <ba...@us...> - 2002-03-24 20:03:25
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv6900
Modified Files:
usercp_register.php
Log Message:
Some extra comments and removed a redundant if
Index: usercp_register.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_register.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** usercp_register.php 24 Mar 2002 13:08:20 -0000 1.15
--- usercp_register.php 24 Mar 2002 20:03:20 -0000 1.16
***************
*** 64,81 ****
if ( $mode == 'register' && !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) )
{
! if ( !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) )
! {
! include($phpbb_root_path . 'includes/page_header.'.$phpEx);
!
! show_coppa($coppa);
! include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! }
}
$coppa = ( ( !$HTTP_POST_VARS['coppa'] && !$HTTP_GET_VARS['coppa'] ) || $mode == 'register' ) ? 0 : TRUE;
! if ( isset($HTTP_POST_VARS['submit']) || isset($HTTP_POST_VARS['avatargallery']) || isset($HTTP_POST_VARS['submitavatar']) || isset($HTTP_POST_VARS['cancelavatar']) || $mode == 'register' )
{
include($phpbb_root_path . 'includes/functions_validate.'.$phpEx);
--- 64,85 ----
if ( $mode == 'register' && !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) )
{
! include($phpbb_root_path . 'includes/page_header.'.$phpEx);
! show_coppa($coppa);
! include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
}
$coppa = ( ( !$HTTP_POST_VARS['coppa'] && !$HTTP_GET_VARS['coppa'] ) || $mode == 'register' ) ? 0 : TRUE;
! //
! // Check and initialize some variables if needed
! //
! if (
! isset($HTTP_POST_VARS['submit']) ||
! isset($HTTP_POST_VARS['avatargallery']) ||
! isset($HTTP_POST_VARS['submitavatar']) ||
! isset($HTTP_POST_VARS['cancelavatar']) ||
! $mode == 'register' )
{
include($phpbb_root_path . 'includes/functions_validate.'.$phpEx);
***************
*** 186,189 ****
--- 190,196 ----
}
+ //
+ // Did the user submit? In this case build a query to update the users profile in the DB
+ //
if ( isset($HTTP_POST_VARS['submit']) )
{
***************
*** 586,590 ****
} // if mode == register
}
! }
if ( $error )
--- 593,598 ----
} // if mode == register
}
! } // End of submit
!
if ( $error )
***************
*** 912,914 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 920,922 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
|
|
From: Bart v. B. <ba...@us...> - 2002-03-24 14:02:03
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv13784
Modified Files:
subSilver.css
Log Message:
Fixed paths for external subSilver file
Index: subSilver.css
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/subSilver.css,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** subSilver.css 22 Mar 2002 18:07:17 -0000 1.7
--- subSilver.css 24 Mar 2002 14:02:00 -0000 1.8
***************
*** 3,10 ****
Created by subBlue design
http://www.subBlue.com
-
- NOTE: These CSS definitions are stored within the main page body so that you can use the phpBB2
- theme administration centre. When you have finalised your style you could cut the final CSS code
- and place it in an external file, deleting this section to save bandwidth.
*/
--- 3,6 ----
***************
*** 49,53 ****
td.rowpic {
background-color: #FFFFFF;
! background-image: url(templates/subSilver/images/cellpic2.jpg);
background-repeat: repeat-y;
}
--- 45,49 ----
td.rowpic {
background-color: #FFFFFF;
! background-image: url(images/cellpic2.jpg);
background-repeat: repeat-y;
}
***************
*** 57,65 ****
color: #FFA34F; font-size: 11px; font-weight : bold;
background-color: #006699; height: 25px;
! background-image: url(templates/subSilver/images/cellpic3.gif);
}
td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
! background-image: url(templates/subSilver/images/cellpic1.gif);
background-color:#D1D7DC; border: #FFFFFF; border-style: solid; height: 28px;
}
--- 53,61 ----
color: #FFA34F; font-size: 11px; font-weight : bold;
background-color: #006699; height: 25px;
! background-image: url(images/cellpic3.gif);
}
td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
! background-image: url(images/cellpic1.gif);
background-color:#D1D7DC; border: #FFFFFF; border-style: solid; height: 28px;
}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-24 13:54:12
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv11546 Modified Files: privmsg.php Log Message: Fix 'non-deletion' of messages deleted from Outbox under certain circumstances Index: privmsg.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/privmsg.php,v retrieving revision 1.91 retrieving revision 1.92 diff -C2 -r1.91 -r1.92 *** privmsg.php 22 Mar 2002 23:17:04 -0000 1.91 --- privmsg.php 24 Mar 2002 13:54:09 -0000 1.92 *************** *** 752,760 **** case 'inbox': $delete_sql .= "privmsgs_to_userid = " . $userdata['user_id'] . " AND ( ! privmsgs_type = " . PRIVMSGS_READ_MAIL . " OR privmsgs_type = " . PRIVMSGS_NEW_MAIL . " OR privmsgs_type = " . PRIVMSGS_UNREAD_MAIL . " )"; break; case 'outbox': ! $delete_sql .= "privmsgs_from_userid = " . $userdata['user_id'] . " AND privmsgs_type = " . PRIVMSGS_NEW_MAIL; break; --- 752,761 ---- case 'inbox': $delete_sql .= "privmsgs_to_userid = " . $userdata['user_id'] . " AND ( ! privmsgs_type = " . PRIVMSGS_READ_MAIL . " OR privmsgs_type = " . PRIVMSGS_NEW_MAIL . " OR privmsgs_type = " . PRIVMSGS_UNREAD_MAIL . " )"; break; case 'outbox': ! $delete_sql .= "privmsgs_from_userid = " . $userdata['user_id'] . " AND ( ! privmsgs_type = " . PRIVMSGS_NEW_MAIL . " OR privmsgs_type = " . PRIVMSGS_UNREAD_MAIL . " )"; break; |
|
From: Paul S. O. <ps...@us...> - 2002-03-24 13:21:20
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv1866/includes
Modified Files:
functions_post.php
Log Message:
Wrong constant URL used in redirect upon deletion of single post, bug #533823
Index: functions_post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions_post.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** functions_post.php 21 Mar 2002 13:29:53 -0000 1.4
--- functions_post.php 24 Mar 2002 13:21:16 -0000 1.5
***************
*** 571,575 ****
if ( $mode == 'delete' && $post_data['first_post'] && $post_data['last_post'] )
{
! $meta = '<meta http-equiv="refresh" content="3;url=' . append_sid("viewforum.$phpEx?" . POST_TOPIC_URL . "=" . $forum_id) . '">';
$message = $lang['Deleted'];
}
--- 571,575 ----
if ( $mode == 'delete' && $post_data['first_post'] && $post_data['last_post'] )
{
! $meta = '<meta http-equiv="refresh" content="3;url=' . append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=" . $forum_id) . '">';
$message = $lang['Deleted'];
}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-24 13:08:25
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv29640/includes
Modified Files:
usercp_register.php
Log Message:
Move $error=FALSE out of conditional to top of script
Index: usercp_register.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_register.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** usercp_register.php 23 Mar 2002 14:56:51 -0000 1.14
--- usercp_register.php 24 Mar 2002 13:08:20 -0000 1.15
***************
*** 59,62 ****
--- 59,63 ----
//
+ $error = FALSE;
$page_title = ( $mode == 'editprofile' ) ? $lang['Edit_profile'] : $lang['Register'];
***************
*** 188,193 ****
{
include($phpbb_root_path . 'includes/usercp_avatar.'.$phpEx);
-
- $error = FALSE;
$passwd_sql = '';
--- 189,192 ----
|
|
From: Paul S. O. <ps...@us...> - 2002-03-24 00:15:40
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv20082/admin
Modified Files:
admin_smilies.php
Log Message:
Change form method to post for basic operations.
Index: admin_smilies.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_smilies.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** admin_smilies.php 22 Mar 2002 17:00:32 -0000 1.21
--- admin_smilies.php 24 Mar 2002 00:15:36 -0000 1.22
***************
*** 229,233 ****
}
}
! else if( isset($HTTP_GET_VARS['export_pack']) )
{
//
--- 229,233 ----
}
}
! else if( isset($HTTP_POST_VARS['export_pack']) || isset($HTTP_GET_VARS['export_pack']) )
{
//
***************
*** 266,270 ****
}
! else if( isset($HTTP_GET_VARS['add']) )
{
//
--- 266,270 ----
}
! else if( isset($HTTP_POST_VARS['add']) )
{
//
|
|
From: Paul S. O. <ps...@us...> - 2002-03-24 00:15:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/admin
In directory usw-pr-cvs1:/tmp/cvs-serv19970/templates/subSilver/admin
Modified Files:
smile_list_body.tpl
Log Message:
Change method to post
Index: smile_list_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/admin/smile_list_body.tpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** smile_list_body.tpl 19 Nov 2001 23:39:24 -0000 1.5
--- smile_list_body.tpl 24 Mar 2002 00:15:11 -0000 1.6
***************
*** 4,8 ****
<P>{L_SMILEY_TEXT}</p>
! <form method="get" action="{S_SMILEY_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline">
<tr>
<th class="thCornerL">{L_CODE}</th>
--- 4,8 ----
<P>{L_SMILEY_TEXT}</p>
! <form method="post" action="{S_SMILEY_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline">
<tr>
<th class="thCornerL">{L_CODE}</th>
|
|
From: Paul S. O. <ps...@us...> - 2002-03-23 23:12:35
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv5498/includes
Modified Files:
functions.php
Log Message:
timezone setup should be isset not !empty ... GMT is 0 after all .. oops
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.128
retrieving revision 1.129
diff -C2 -r1.128 -r1.129
*** functions.php 19 Mar 2002 01:00:37 -0000 1.128
--- functions.php 23 Mar 2002 23:12:31 -0000 1.129
***************
*** 197,201 ****
}
! if ( !empty($userdata['user_timezone']) )
{
$board_config['board_timezone'] = $userdata['user_timezone'];
--- 197,201 ----
}
! if ( isset($userdata['user_timezone']) )
{
$board_config['board_timezone'] = $userdata['user_timezone'];
|
|
From: Paul S. O. <ps...@us...> - 2002-03-23 22:21:36
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv25978/admin
Modified Files:
admin_ug_auth.php
Log Message:
Wrong redirect on chaning user level
Index: admin_ug_auth.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_ug_auth.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** admin_ug_auth.php 22 Mar 2002 17:00:32 -0000 1.9
--- admin_ug_auth.php 23 Mar 2002 22:21:33 -0000 1.10
***************
*** 181,186 ****
}
! header("Location: " . append_sid("admin_ug_auth.$phpEx?" . POST_USERS_URL . "=$user_id", true));
! exit;
}
else if ( $mode == 'user' && $HTTP_POST_VARS['userlevel'] == 'admin' && $user_level != ADMIN )
--- 181,186 ----
}
! $message = $lang['Auth_updated'] . '<br /><br />' . sprintf($lang['Click_return_userauth'], '<a href="' . append_sid("admin_ug_auth.$phpEx?mode=$mode") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_admin_index'], '<a href="' . append_sid("index.$phpEx?pane=right") . '">', '</a>');
! message_die(GENERAL_MESSAGE, $message);
}
else if ( $mode == 'user' && $HTTP_POST_VARS['userlevel'] == 'admin' && $user_level != ADMIN )
***************
*** 220,225 ****
}
! header("Location: " . append_sid("admin_ug_auth.$phpEx?" . POST_USERS_URL . "=$user_id", true));
! exit;
}
else
--- 220,225 ----
}
! $message = $lang['Auth_updated'] . '<br /><br />' . sprintf($lang['Click_return_userauth'], '<a href="' . append_sid("admin_ug_auth.$phpEx?mode=$mode") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_admin_index'], '<a href="' . append_sid("index.$phpEx?pane=right") . '">', '</a>');
! message_die(GENERAL_MESSAGE, $message);
}
else
|
|
From: Paul S. O. <ps...@us...> - 2002-03-23 22:18:07
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv25245
Modified Files:
posting.php viewtopic.php
Log Message:
Various bug fixes, polls, Guest vs. Anonymous, quoting guests
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.154
retrieving revision 1.155
diff -C2 -r1.154 -r1.155
*** posting.php 22 Mar 2002 21:50:05 -0000 1.154
--- posting.php 23 Mar 2002 22:18:04 -0000 1.155
***************
*** 764,768 ****
$msg_date = create_date($board_config['default_dateformat'], $postrow['post_time'], $board_config['board_timezone']);
! $message = '[quote="' . $post_info['username'] . '"]' . $message . '[/quote]';
if ( !empty($orig_word) )
--- 764,769 ----
$msg_date = create_date($board_config['default_dateformat'], $postrow['post_time'], $board_config['board_timezone']);
! $quote_username = ( !empty($post_info['post_username']) ) ? $post_info['post_username'] : $post_info['username'];
! $message = '[quote="' . $quote_username . '"]' . $message . '[/quote]';
if ( !empty($orig_word) )
Index: viewtopic.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v
retrieving revision 1.183
retrieving revision 1.184
diff -C2 -r1.183 -r1.184
*** viewtopic.php 22 Mar 2002 23:17:06 -0000 1.183
--- viewtopic.php 23 Mar 2002 22:18:04 -0000 1.184
***************
*** 692,695 ****
--- 692,698 ----
if ( $vote_info = $db->sql_fetchrowset($result) )
{
+ $db->sql_freeresult($result);
+ $vote_options = count($vote_info);
+
$vote_id = $vote_info[0]['vote_id'];
$vote_title = $vote_info[0]['vote_text'];
***************
*** 704,708 ****
}
! $user_voted = ( $db->sql_numrows($result) ) ? TRUE : 0;
if ( isset($HTTP_GET_VARS['vote']) || isset($HTTP_POST_VARS['vote']) )
--- 707,712 ----
}
! $user_voted = ( $row = $db->sql_fetchrow($result) ) ? TRUE : 0;
! $db->sql_freeresult($result);
if ( isset($HTTP_GET_VARS['vote']) || isset($HTTP_POST_VARS['vote']) )
***************
*** 719,723 ****
if ( $user_voted || $view_result || $poll_expired || !$is_auth['auth_vote'] || $forum_row['topic_status'] == TOPIC_LOCKED )
{
-
$template->set_filenames(array(
'pollbox' => 'viewtopic_poll_result.tpl')
--- 723,726 ----
***************
*** 827,831 ****
{
$poster_id = $postrow[$i]['user_id'];
! $poster = $postrow[$i]['username'];
$post_date = create_date($board_config['default_dateformat'], $postrow[$i]['post_time'], $board_config['board_timezone']);
--- 830,834 ----
{
$poster_id = $postrow[$i]['user_id'];
! $poster = ( $poster_id == ANONYMOUS ) ? $lang['Guest'] : $postrow[$i]['username'];
$post_date = create_date($board_config['default_dateformat'], $postrow[$i]['post_time'], $board_config['board_timezone']);
|
|
From: Paul S. O. <ps...@us...> - 2002-03-23 15:36:29
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/admin
In directory usw-pr-cvs1:/tmp/cvs-serv3714/templates/subSilver/admin
Modified Files:
user_edit_body.tpl
Log Message:
Fix wrong lang var issue
Index: user_edit_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/admin/user_edit_body.tpl,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** user_edit_body.tpl 22 Mar 2002 17:01:50 -0000 1.11
--- user_edit_body.tpl 23 Mar 2002 15:36:26 -0000 1.12
***************
*** 26,40 ****
</tr>
<tr>
! <td class="row1"><span class="gen">{L_PASSWORD}: *</span><br />
<span class="gensmall">{L_PASSWORD_IF_CHANGED}</span></td>
<td class="row2">
! <input type="password" name="password" size="35" maxlength="100" value="{PASSWORD}" />
</td>
</tr>
<tr>
! <td class="row1"><span class="gen">{L_CONFIRM} {L_PASSWORD}: * </span><br />
<span class="gensmall">{L_PASSWORD_CONFIRM_IF_CHANGED}</span></td>
<td class="row2">
! <input type="password" name="password_confirm" size="35" maxlength="100" value="{PASSWORD_CONFIRM}" />
</td>
</tr>
--- 26,40 ----
</tr>
<tr>
! <td class="row1"><span class="gen">{L_NEW_PASSWORD}: *</span><br />
<span class="gensmall">{L_PASSWORD_IF_CHANGED}</span></td>
<td class="row2">
! <input type="password" name="password" size="35" maxlength="100" value="" />
</td>
</tr>
<tr>
! <td class="row1"><span class="gen">{L_CONFIRM_PASSWORD}: * </span><br />
<span class="gensmall">{L_PASSWORD_CONFIRM_IF_CHANGED}</span></td>
<td class="row2">
! <input type="password" name="password_confirm" size="35" maxlength="100" value="" />
</td>
</tr>
|
|
From: Paul S. O. <ps...@us...> - 2002-03-23 15:36:18
|
Update of /cvsroot/phpbb/phpBB2/admin In directory usw-pr-cvs1:/tmp/cvs-serv3676/admin Modified Files: admin_users.php Log Message: Fixed wrong lang var useage Index: admin_users.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/admin/admin_users.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -r1.54 -r1.55 *** admin_users.php 22 Mar 2002 17:00:33 -0000 1.54 --- admin_users.php 23 Mar 2002 15:36:14 -0000 1.55 *************** *** 944,948 **** --- 944,950 ---- 'L_USER_TITLE' => $lang['User_admin'], 'L_USER_EXPLAIN' => $lang['User_admin_explain'], + 'L_NEW_PASSWORD' => $lang['New_password'], 'L_PASSWORD_IF_CHANGED' => $lang['password_if_changed'], + 'L_CONFIRM_PASSWORD' => $lang['Confirm_password'], 'L_PASSWORD_CONFIRM_IF_CHANGED' => $lang['password_confirm_if_changed'], 'L_SUBMIT' => $lang['Submit'], *************** *** 996,1000 **** 'L_PROFILE_INFO' => $lang['Profile_info'], 'L_PROFILE_INFO_NOTICE' => $lang['Profile_info_warn'], - 'L_CONFIRM' => $lang['Confirm'], 'L_EMAIL_ADDRESS' => $lang['Email_address'], 'S_FORM_ENCTYPE' => $form_enctype, --- 998,1001 ---- |
|
From: Paul S. O. <ps...@us...> - 2002-03-23 14:56:54
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv26551/includes
Modified Files:
usercp_avatar.php usercp_register.php
Log Message:
Fix issues with quotes in profile fields and avatars
Index: usercp_avatar.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_avatar.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** usercp_avatar.php 22 Mar 2002 22:22:41 -0000 1.6
--- usercp_avatar.php 23 Mar 2002 14:56:51 -0000 1.7
***************
*** 86,94 ****
}
! function user_avatar_upload($mode, $avatar_mode, $user_id, &$error, &$error_msg, $avatar_filename, $avatar_realname, $avatar_filesize, $avatar_filetype)
{
! global $board_config, $db, $lang, $images;
! $ini_val = ( phpversion() >= '4.0.0' ) ? 'ini_get' : 'get_cfg_var';
if ( $avatar_mode == 'remote' && preg_match('/^(http:\/\/)?([\w\-\.]+)\:?([0-9]*)\/(.*)$/', $avatar_filename, $url_ary) )
--- 86,94 ----
}
! function user_avatar_upload($mode, $avatar_mode, &$current_avatar, &$current_type, &$error, &$error_msg, $avatar_filename, $avatar_realname, $avatar_filesize, $avatar_filetype)
{
! global $board_config, $user_ip, $db, $lang;
! $ini_val = ( @phpversion() >= '4.0.0' ) ? 'ini_get' : 'get_cfg_var';
if ( $avatar_mode == 'remote' && preg_match('/^(http:\/\/)?([\w\-\.]+)\:?([0-9]*)\/(.*)$/', $avatar_filename, $url_ary) )
***************
*** 136,141 ****
$avatar_data = substr($avatar_data, strlen($avatar_data) - $avatar_filesize, $avatar_filesize);
! $tmp_path = ( !@$ini_val('safe_mode') ) ? '/tmp' : './' . $board_config['avatar_path'] . "/tmp";
! $tmp_filename = tempnam($tmp_path, $userdata['user_id'] . '-');
$fptr = @fopen($tmp_filename, 'wb');
--- 136,141 ----
$avatar_data = substr($avatar_data, strlen($avatar_data) - $avatar_filesize, $avatar_filesize);
! $tmp_path = ( !@$ini_val('safe_mode') ) ? '/tmp' : './' . $board_config['avatar_path'] . '/tmp';
! $tmp_filename = tempnam($tmp_path, uniqid($user_ip) . '-');
$fptr = @fopen($tmp_filename, 'wb');
***************
*** 163,169 ****
if ( $avatar_filesize <= $board_config['avatar_filesize'] && $avatar_filesize > 0 )
{
- //
- // Opera appends the image name after the type, not big, not clever!
- //
preg_match("'image\/[x\-]*([a-z]+)'", $avatar_filetype, $avatar_filetype);
$avatar_filetype = $avatar_filetype[1];
--- 163,166 ----
***************
*** 188,198 ****
if ( $width <= $board_config['avatar_max_width'] && $height <= $board_config['avatar_max_height'] )
{
! $new_filename = $user_id . $imgtype;
! if ( $mode == 'editprofile' && $userdata['user_avatar_type'] == USER_AVATAR_UPLOAD && $userdata['user_avatar'] != '')
{
! if ( file_exists('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar']) )
{
! @unlink('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar']);
}
}
--- 185,195 ----
if ( $width <= $board_config['avatar_max_width'] && $height <= $board_config['avatar_max_height'] )
{
! $new_filename = ( $current_avatar != '' && $mode != 'register' ) ? $current_avatar : uniqid($user_ip) . $imgtype;
! if ( $mode == 'editprofile' && $current_type == USER_AVATAR_UPLOAD && $current_avatar != '' )
{
! if ( file_exists('./' . $board_config['avatar_path'] . '/' . $current_avatar) )
{
! @unlink('./' . $board_config['avatar_path'] . '/' . $current_avatar);
}
}
***************
*** 207,211 ****
if ( @$ini_val('open_basedir') != '' )
{
! if ( phpversion() < '4.0.3' )
{
message_die(GENERAL_ERROR, 'open_basedir is set and your PHP version does not allow move_uploaded_file', '', __LINE__, __FILE__);
--- 204,208 ----
if ( @$ini_val('open_basedir') != '' )
{
! if ( @phpversion() < '4.0.3' )
{
message_die(GENERAL_ERROR, 'open_basedir is set and your PHP version does not allow move_uploaded_file', '', __LINE__, __FILE__);
***************
*** 224,228 ****
@chmod('./' . $board_config['avatar_path'] . "/$new_filename", 0777);
! $avatar_sql = ( $mode == 'editprofile' ) ? ", user_avatar = '$new_filename', user_avatar_type = " . USER_AVATAR_UPLOAD : "'$avatar_filename', " . USER_AVATAR_UPLOAD;
}
else
--- 221,225 ----
@chmod('./' . $board_config['avatar_path'] . "/$new_filename", 0777);
! $avatar_sql = ( $mode == 'editprofile' ) ? ", user_avatar = '$new_filename', user_avatar_type = " . USER_AVATAR_UPLOAD : "'$new_filename', " . USER_AVATAR_UPLOAD;
}
else
Index: usercp_register.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_register.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** usercp_register.php 21 Mar 2002 15:45:13 -0000 1.13
--- usercp_register.php 23 Mar 2002 14:56:51 -0000 1.14
***************
*** 148,153 ****
$user_avatar_remoteurl = ( !empty($HTTP_POST_VARS['avatarremoteurl']) ) ? trim($HTTP_POST_VARS['avatarremoteurl']) : '';
! $user_avatar_url = ( !empty($HTTP_POST_VARS['avatarurl']) ) ? trim($HTTP_POST_VARS['avatarurl']) : '';
! $user_avatar_loc = ( $HTTP_POST_FILES['avatar']['tmp_name'] != "none") ? $HTTP_POST_FILES['avatar']['tmp_name'] : '';
$user_avatar_name = ( !empty($HTTP_POST_FILES['avatar']['name']) ) ? $HTTP_POST_FILES['avatar']['name'] : '';
$user_avatar_size = ( !empty($HTTP_POST_FILES['avatar']['size']) ) ? $HTTP_POST_FILES['avatar']['size'] : 0;
--- 148,152 ----
$user_avatar_remoteurl = ( !empty($HTTP_POST_VARS['avatarremoteurl']) ) ? trim($HTTP_POST_VARS['avatarremoteurl']) : '';
! $user_avatar_upload = ( !empty($HTTP_POST_VARS['avatarurl']) ) ? trim($HTTP_POST_VARS['avatarurl']) : ( ( $HTTP_POST_FILES['avatar']['tmp_name'] != "none") ? $HTTP_POST_FILES['avatar']['tmp_name'] : '' );
$user_avatar_name = ( !empty($HTTP_POST_FILES['avatar']['name']) ) ? $HTTP_POST_FILES['avatar']['name'] : '';
$user_avatar_size = ( !empty($HTTP_POST_FILES['avatar']['size']) ) ? $HTTP_POST_FILES['avatar']['size'] : 0;
***************
*** 338,358 ****
$avatar_sql = user_avatar_delete($userdata['avatar_type'], $userdata['avatar_file']);
}
! else if ( ( $user_avatar_loc != '' || !empty($user_avatar_url) || !empty($user_avatar_name) ) && $board_config['allow_avatar_upload'] )
{
! if ( !empty($user_avatar_loc) && !empty($user_avatar_url) )
{
! $error = true;
! $error_msg .= ( ( !empty($error_msg) ) ? '<br />' : '' ) . $lang['Only_one_avatar'];
! }
!
! $id = ( $mode == 'register' ) ? $new_user_id : $userdata['user_id'];
!
! if ( !empty($user_avatar_loc) )
! {
! $avatar_sql = user_avatar_upload($mode, 'local', $id, $error, $error_msg, $user_avatar_loc, $user_avatar_name, $user_avatar_size, $user_avatar_filetype);
! }
! else if ( !empty($user_avatar_url) )
! {
! $avatar_sql = user_avatar_upload($mode, 'remote', $id, $error, $error_msg, $user_avatar_url, $user_avatar_name, $user_avatar_size, $user_avatar_filetype);
}
else if ( !empty($user_avatar_name) )
--- 337,346 ----
$avatar_sql = user_avatar_delete($userdata['avatar_type'], $userdata['avatar_file']);
}
! else if ( !empty($user_avatar_upload) && $board_config['allow_avatar_upload'] )
{
! if ( !empty($user_avatar_upload) )
{
! $avatar_mode = ( !empty($user_avatar_name) ) ? 'local' : 'remote';
! $avatar_sql = user_avatar_upload($mode, $avatar_mode, $userdata['user_avatar'], $userdata['user_avatar_type'], $error, $error_msg, $user_avatar_upload, $user_avatar_name, $user_avatar_size, $user_avatar_filetype);
}
else if ( !empty($user_avatar_name) )
***************
*** 612,623 ****
$icq = stripslashes($icq);
! $aim = str_replace('+', ' ', stripslashes($aim));
! $msn = stripslashes($msn);
! $yim = stripslashes($yim);
!
! $website = stripslashes($website);
! $location = stripslashes($location);
! $occupation = stripslashes($occupation);
! $interests = stripslashes($interests);
$signature = stripslashes($signature);
--- 600,611 ----
$icq = stripslashes($icq);
! $aim = htmlspecialchars(str_replace('+', ' ', stripslashes($aim)));
! $msn = htmlspecialchars(stripslashes($msn));
! $yim = htmlspecialchars(stripslashes($yim));
!
! $website = htmlspecialchars(stripslashes($website));
! $location = htmlspecialchars(stripslashes($location));
! $occupation = htmlspecialchars(stripslashes($occupation));
! $interests = htmlspecialchars(stripslashes($interests));
$signature = stripslashes($signature);
***************
*** 629,648 ****
{
$user_id = $userdata['user_id'];
! $username = $userdata['username'];
$email = $userdata['user_email'];
! $password = "";
! $password_confirm = "";
$icq = $userdata['user_icq'];
! $aim = str_replace('+', ' ', $userdata['user_aim']);
! $msn = $userdata['user_msnm'];
! $yim = $userdata['user_yim'];
!
! $website = $userdata['user_website'];
! $location = $userdata['user_from'];
! $occupation = $userdata['user_occ'];
! $interests = $userdata['user_interests'];
$signature_bbcode_uid = $userdata['user_sig_bbcode_uid'];
! $signature = ( $signature_bbcode_uid != "" ) ? preg_replace("/\:(([a-z0-9]:)?)$signature_bbcode_uid/si", '', $userdata['user_sig']) : $userdata['user_sig'];
$viewemail = $userdata['user_viewemail'];
--- 617,636 ----
{
$user_id = $userdata['user_id'];
! $username = htmlspecialchars($userdata['username']);
$email = $userdata['user_email'];
! $password = '';
! $password_confirm = '';
$icq = $userdata['user_icq'];
! $aim = htmlspecialchars(str_replace('+', ' ', $userdata['user_aim']));
! $msn = htmlspecialchars($userdata['user_msnm']);
! $yim = htmlspecialchars($userdata['user_yim']);
!
! $website = htmlspecialchars($userdata['user_website']);
! $location = htmlspecialchars($userdata['user_from']);
! $occupation = htmlspecialchars($userdata['user_occ']);
! $interests = htmlspecialchars($userdata['user_interests']);
$signature_bbcode_uid = $userdata['user_sig_bbcode_uid'];
! $signature = ( $signature_bbcode_uid != '' ) ? preg_replace("/\:(([a-z0-9]:)?)$signature_bbcode_uid/si", '', $userdata['user_sig']) : $userdata['user_sig'];
$viewemail = $userdata['user_viewemail'];
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 23:17:09
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv17145
Modified Files:
groupcp.php privmsg.php profile.php viewtopic.php
Log Message:
More header fixing
Index: groupcp.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/groupcp.php,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -r1.55 -r1.56
*** groupcp.php 19 Mar 2002 21:38:49 -0000 1.55
--- groupcp.php 22 Mar 2002 23:17:03 -0000 1.56
***************
*** 76,80 ****
if( !$userdata['session_logged_in'] )
{
! header('Location: ' . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
--- 76,81 ----
if( !$userdata['session_logged_in'] )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
***************
*** 128,132 ****
if( !$userdata['session_logged_in'] )
{
! header("Location: " . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
--- 129,134 ----
if( !$userdata['session_logged_in'] )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . ppend_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
***************
*** 232,241 ****
if( $cancel )
{
! header("Location: " . append_sid("groupcp.$phpEx", true));
}
if( !$userdata['session_logged_in'] )
{
! header("Location: " . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
--- 234,245 ----
if( $cancel )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . ppend_sid("groupcp.$phpEx", true));
}
if( !$userdata['session_logged_in'] )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
***************
*** 321,325 ****
if( !$userdata['session_logged_in'] )
{
! header("Location: " . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
}
--- 325,330 ----
if( !$userdata['session_logged_in'] )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
}
***************
*** 382,386 ****
if( !$userdata['session_logged_in'] )
{
! header("Location: " . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
--- 387,392 ----
if( !$userdata['session_logged_in'] )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=groupcp.$phpEx&" . POST_GROUPS_URL . "=$group_id", true));
}
***************
*** 1196,1200 ****
if ( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, "Error getting group information", "", __LINE__, __FILE__, $sql);
}
--- 1202,1206 ----
if ( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, 'Error getting group information', '', __LINE__, __FILE__, $sql);
}
***************
*** 1202,1207 ****
{
$in_group = array();
! $s_member_groups_opt = "";
! $s_pending_groups_opt = "";
do
--- 1208,1213 ----
{
$in_group = array();
! $s_member_groups_opt = '';
! $s_pending_groups_opt = '';
do
***************
*** 1246,1313 ****
}
}
! $s_group_list = '<select name="' . POST_GROUPS_URL . '">' . $s_group_list_opt . "</select>";
! //
! // Load and process templates
! //
! include($phpbb_root_path . 'includes/page_header.'.$phpEx);
! $template->set_filenames(array(
! 'user' => 'groupcp_user_body.tpl',
! 'jumpbox' => 'jumpbox.tpl')
! );
! $jumpbox = make_jumpbox();
! $template->assign_vars(array(
! 'L_GO' => $lang['Go'],
! 'L_JUMP_TO' => $lang['Jump_to'],
! 'L_SELECT_FORUM' => $lang['Select_forum'],
!
! 'S_JUMPBOX_LIST' => $jumpbox,
! 'S_JUMPBOX_ACTION' => append_sid("viewforum.$phpEx"))
! );
! $template->assign_var_from_handle('JUMPBOX', 'jumpbox');
! if ( $s_pending_groups_opt != '' || $s_member_groups_opt != '' )
! {
! $template->assign_block_vars('groups_joined', array() );
! }
! if ( $s_member_groups_opt != '' )
! {
! $template->assign_block_vars('groups_joined.groups_member', array() );
! }
! if ( $s_pending_groups_opt != '' )
! {
! $template->assign_block_vars('groups_joined.groups_pending', array() );
! }
! if ( $s_group_list_opt != '' )
! {
! $template->assign_block_vars('groups_remaining', array() );
! }
! $s_hidden_fields = '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />';
! $template->assign_vars(array(
! 'L_GROUP_MEMBERSHIP_DETAILS' => $lang['Group_member_details'],
! 'L_JOIN_A_GROUP' => $lang['Group_member_join'],
! 'L_YOU_BELONG_GROUPS' => $lang['Current_memberships'],
! 'L_SELECT_A_GROUP' => $lang['Non_member_groups'],
! 'L_PENDING_GROUPS' => $lang['Memberships_pending'],
! 'L_SUBSCRIBE' => $lang['Subscribe'],
! 'L_UNSUBSCRIBE' => $lang['Unsubscribe'],
! 'L_VIEW_INFORMATION' => $lang['View_Information'],
!
! 'S_USERGROUP_ACTION' => append_sid("groupcp.$phpEx"),
! 'S_HIDDEN_FIELDS' => $s_hidden_fields,
!
! 'GROUP_LIST_SELECT' => $s_group_list,
! 'GROUP_PENDING_SELECT' => $s_pending_groups,
! 'GROUP_MEMBER_SELECT' => $s_member_groups)
! );
! $template->pparse('user');
}
--- 1252,1326 ----
}
}
! $s_group_list = '<select name="' . POST_GROUPS_URL . '">' . $s_group_list_opt . '</select>';
! if ( $s_group_list_opt != '' || $s_pending_groups_opt != '' || $s_member_groups_opt != '' )
! {
! //
! // Load and process templates
! //
! include($phpbb_root_path . 'includes/page_header.'.$phpEx);
! $template->set_filenames(array(
! 'user' => 'groupcp_user_body.tpl',
! 'jumpbox' => 'jumpbox.tpl')
! );
! $jumpbox = make_jumpbox();
! $template->assign_vars(array(
! 'L_GO' => $lang['Go'],
! 'L_JUMP_TO' => $lang['Jump_to'],
! 'L_SELECT_FORUM' => $lang['Select_forum'],
!
! 'S_JUMPBOX_LIST' => $jumpbox,
! 'S_JUMPBOX_ACTION' => append_sid("viewforum.$phpEx"))
! );
! $template->assign_var_from_handle('JUMPBOX', 'jumpbox');
! if ( $s_pending_groups_opt != '' || $s_member_groups_opt != '' )
! {
! $template->assign_block_vars('groups_joined', array() );
! }
! if ( $s_member_groups_opt != '' )
! {
! $template->assign_block_vars('groups_joined.groups_member', array() );
! }
! if ( $s_pending_groups_opt != '' )
! {
! $template->assign_block_vars('groups_joined.groups_pending', array() );
! }
! if ( $s_group_list_opt != '' )
! {
! $template->assign_block_vars('groups_remaining', array() );
! }
! $s_hidden_fields = '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />';
! $template->assign_vars(array(
! 'L_GROUP_MEMBERSHIP_DETAILS' => $lang['Group_member_details'],
! 'L_JOIN_A_GROUP' => $lang['Group_member_join'],
! 'L_YOU_BELONG_GROUPS' => $lang['Current_memberships'],
! 'L_SELECT_A_GROUP' => $lang['Non_member_groups'],
! 'L_PENDING_GROUPS' => $lang['Memberships_pending'],
! 'L_SUBSCRIBE' => $lang['Subscribe'],
! 'L_UNSUBSCRIBE' => $lang['Unsubscribe'],
! 'L_VIEW_INFORMATION' => $lang['View_Information'],
!
! 'S_USERGROUP_ACTION' => append_sid("groupcp.$phpEx"),
! 'S_HIDDEN_FIELDS' => $s_hidden_fields,
!
! 'GROUP_LIST_SELECT' => $s_group_list,
! 'GROUP_PENDING_SELECT' => $s_pending_groups,
! 'GROUP_MEMBER_SELECT' => $s_member_groups)
! );
! $template->pparse('user');
! }
! else
! {
! message_die(GENERAL_MESSAGE, $lang['No_groups_exist']);
! }
}
Index: privmsg.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/privmsg.php,v
retrieving revision 1.90
retrieving revision 1.91
diff -C2 -r1.90 -r1.91
*** privmsg.php 19 Mar 2002 01:53:19 -0000 1.90
--- privmsg.php 22 Mar 2002 23:17:04 -0000 1.91
***************
*** 39,44 ****
// Var definitions
//
! $html_entities_match = array("#&#", "#<#", "#>#");
! $html_entities_replace = array("&", "<", ">");
//
--- 39,44 ----
// Var definitions
//
! $html_entities_match = array('#&#', '#<#', '#>#');
! $html_entities_replace = array('&', '<', '>');
//
***************
*** 62,73 ****
$folder = ( isset($HTTP_POST_VARS['folder']) ) ? $HTTP_POST_VARS['folder'] : $HTTP_GET_VARS['folder'];
! if( $folder != "inbox" && $folder != "outbox" && $folder != "sentbox" && $folder != "savebox" )
{
! $folder = "inbox";
}
}
else
{
! $folder = "inbox";
}
--- 62,73 ----
$folder = ( isset($HTTP_POST_VARS['folder']) ) ? $HTTP_POST_VARS['folder'] : $HTTP_GET_VARS['folder'];
! if( $folder != 'inbox' && $folder != 'outbox' && $folder != 'sentbox' && $folder != 'savebox' )
{
! $folder = 'inbox';
}
}
else
{
! $folder = 'inbox';
}
***************
*** 77,81 ****
if( $cancel )
{
! header("Location: " . append_sid("privmsg.$phpEx?folder=$folder", true));
}
--- 77,81 ----
if( $cancel )
{
! header('Location: ' . append_sid("privmsg.$phpEx?folder=$folder", true));
}
***************
*** 184,188 ****
if( !$userdata['session_logged_in'] )
{
! header("Location: " . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=$folder&mode=$mode&" . POST_POST_URL . "=$privmsgs_id", true));
}
--- 184,189 ----
if( !$userdata['session_logged_in'] )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=$folder&mode=$mode&" . POST_POST_URL . "=$privmsgs_id", true));
}
***************
*** 257,261 ****
if( !( $privmsg = $db->sql_fetchrow($pm_status) ) )
{
! header("Location: " . append_sid("privmsg.$phpEx?folder=$folder", true));
}
--- 258,263 ----
if( !( $privmsg = $db->sql_fetchrow($pm_status) ) )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("privmsg.$phpEx?folder=$folder", true));
}
***************
*** 589,593 ****
if(!$userdata['session_logged_in'])
{
! header("Location: " . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=inbox", true));
}
if( isset($mark_list) && !is_array($mark_list) )
--- 591,596 ----
if(!$userdata['session_logged_in'])
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=inbox", true));
}
if( isset($mark_list) && !is_array($mark_list) )
***************
*** 784,788 ****
if( !$userdata['session_logged_in'] )
{
! header("Location: " . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=inbox", true));
}
--- 787,792 ----
if( !$userdata['session_logged_in'] )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=inbox", true));
}
***************
*** 876,880 ****
{
$user_id = ( isset($HTTP_GET_VARS[POST_USERS_URL]) ) ? "&" . POST_USERS_URL . "=" . $HTTP_GET_VARS[POST_USERS_URL] : "";
! header("Location: " . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=$folder&mode=$mode" . $user_id, true));
}
--- 880,885 ----
{
$user_id = ( isset($HTTP_GET_VARS[POST_USERS_URL]) ) ? "&" . POST_USERS_URL . "=" . $HTTP_GET_VARS[POST_USERS_URL] : "";
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=$folder&mode=$mode" . $user_id, true));
}
***************
*** 1273,1283 ****
message_die(GENERAL_ERROR, "Could not obtain private message for editing.", "", __LINE__, __FILE__, $sql);
}
! if(!$db->sql_numrows($pm_edit_status))
{
! header("Location: " . append_sid("privmsg.$phpEx?folder=$folder", true));
}
- $privmsg = $db->sql_fetchrow($pm_edit_status);
-
$privmsg_subject = $privmsg['privmsgs_subject'];
$privmsg_message = $privmsg['privmsgs_text'];
--- 1278,1287 ----
message_die(GENERAL_ERROR, "Could not obtain private message for editing.", "", __LINE__, __FILE__, $sql);
}
! if ( !($privmsg = $db->sql_fetchrow($pm_edit_status)) )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("privmsg.$phpEx?folder=$folder", true));
}
$privmsg_subject = $privmsg['privmsgs_subject'];
$privmsg_message = $privmsg['privmsgs_text'];
***************
*** 1313,1321 ****
}
! if( !$db->sql_numrows($pm_reply_status) )
{
! header("Location: " . append_sid("privmsg.$phpEx?folder=$folder", true));
}
- $privmsg = $db->sql_fetchrow($pm_reply_status);
$privmsg_subject = ( ( !preg_match("/^Re:/", $privmsg['privmsgs_subject']) ) ? "Re: " : "" ) . $privmsg['privmsgs_subject'];
--- 1317,1325 ----
}
! if( !($privmsg = $db->sql_fetchrow($pm_reply_status)) )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("privmsg.$phpEx?folder=$folder", true));
}
$privmsg_subject = ( ( !preg_match("/^Re:/", $privmsg['privmsgs_subject']) ) ? "Re: " : "" ) . $privmsg['privmsgs_subject'];
***************
*** 1669,1673 ****
if( !$userdata['session_logged_in'] )
{
! header("Location: " . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=inbox", true));
}
--- 1673,1678 ----
if( !$userdata['session_logged_in'] )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=privmsg.$phpEx&folder=inbox", true));
}
Index: profile.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/profile.php,v
retrieving revision 1.191
retrieving revision 1.192
diff -C2 -r1.191 -r1.192
*** profile.php 18 Mar 2002 23:53:38 -0000 1.191
--- profile.php 22 Mar 2002 23:17:05 -0000 1.192
***************
*** 84,88 ****
if ( !$userdata['session_logged_in'] && $mode == 'editprofile' )
{
! header("Location: " . append_sid("login.$phpEx?redirect=profile.$phpEx&mode=editprofile", true));
exit;
}
--- 84,89 ----
if ( !$userdata['session_logged_in'] && $mode == 'editprofile' )
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=profile.$phpEx&mode=editprofile", true));
exit;
}
***************
*** 109,113 ****
else
{
! header("Location: " . append_sid("index.$phpEx", true));
exit;
}
--- 110,115 ----
else
{
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("index.$phpEx", true));
exit;
}
Index: viewtopic.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v
retrieving revision 1.182
retrieving revision 1.183
diff -C2 -r1.182 -r1.183
*** viewtopic.php 20 Mar 2002 15:04:21 -0000 1.182
--- viewtopic.php 22 Mar 2002 23:17:06 -0000 1.183
***************
*** 22,26 ****
define('IN_PHPBB', true);
! $phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
--- 22,26 ----
define('IN_PHPBB', true);
! $phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
[...1399 lines suppressed...]
! 'ICQ_STATUS_IMG' => $icq_status_img,
! 'ICQ_ADD_IMG' => $icq_add_img,
! 'AIM_IMG' => $aim_img,
! 'MSN_IMG' => $msn_img,
! 'YIM_IMG' => $yim_img,
!
! 'EDIT_IMG' => $edit_img,
! 'QUOTE_IMG' => $quote_img,
! 'IP_IMG' => $ip_img,
! 'DELETE_IMG' => $delpost_img,
! 'U_MINI_POST' => $mini_post_url,
! 'U_POST_ID' => $postrow[$i]['post_id'])
);
}
! $template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 22:27:13
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv4388
Modified Files:
viewforum.php
Log Message:
Redirect to login header change for IIS/Webstart
Index: viewforum.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewforum.php,v
retrieving revision 1.133
retrieving revision 1.134
diff -C2 -r1.133 -r1.134
*** viewforum.php 21 Mar 2002 01:38:45 -0000 1.133
--- viewforum.php 22 Mar 2002 22:27:10 -0000 1.134
***************
*** 104,108 ****
{
$redirect = POST_FORUM_URL . "=$forum_id" . ( ( isset($start) ) ? "&start=$start" : "" );
! header("Location: " . append_sid("login.$phpEx?redirect=viewforum.$phpEx&$redirect", true));
}
//
--- 104,109 ----
{
$redirect = POST_FORUM_URL . "=$forum_id" . ( ( isset($start) ) ? "&start=$start" : "" );
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=viewforum.$phpEx&$redirect", true));
}
//
***************
*** 190,194 ****
AND aa.auth_mod = " . TRUE . "
AND g.group_single_user = 1
- AND g.group_type <> ". GROUP_HIDDEN ."
AND ug.group_id = aa.group_id
AND g.group_id = aa.group_id
--- 191,194 ----
***************
*** 379,383 ****
//
$nav_links['up'] = array(
! 'url' => append_sid("index.".$phpEx),
'title' => sprintf($lang['Forum_Index'], $board_config['sitename'])
);
--- 379,383 ----
//
$nav_links['up'] = array(
! 'url' => append_sid('index.'.$phpEx),
'title' => sprintf($lang['Forum_Index'], $board_config['sitename'])
);
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 22:22:43
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv3159/includes
Modified Files:
usercp_avatar.php
Log Message:
Fix hide online when returning from gallery bug
Index: usercp_avatar.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_avatar.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** usercp_avatar.php 20 Mar 2002 14:38:51 -0000 1.5
--- usercp_avatar.php 22 Mar 2002 22:22:41 -0000 1.6
***************
*** 237,241 ****
}
! function display_avatar_gallery($mode, &$category, &$user_id, &$email, &$current_email, &$coppa, &$username, &$email, &$icq, &$aim, &$msn, &$yim, &$website, &$location, &$occupation, &$interests, &$signature, &$viewemail, &$notifypm, &$popuppm, &$notifyreply, &$attachsig, &$allowhtml, &$allowbbcode, &$allowsmilies, &$hideonline, &$style, &$language, &$timezone, &$dateformat)
{
global $board_config, $db, $template, $lang, $images, $theme;
--- 237,241 ----
}
! function display_avatar_gallery($mode, &$category, &$user_id, &$email, &$current_email, &$coppa, &$username, &$email, &$icq, &$aim, &$msn, &$yim, &$website, &$location, &$occupation, &$interests, &$signature, &$viewemail, &$notifypm, &$popuppm, &$notifyreply, &$attachsig, &$allowhtml, &$allowbbcode, &$allowsmilies, &$allowviewonline, &$style, &$language, &$timezone, &$dateformat)
{
global $board_config, $db, $template, $lang, $images, $theme;
***************
*** 312,316 ****
}
! $params = array('coppa', 'user_id', 'username', 'email', 'current_email', 'icq', 'aim', 'msn', 'yim', 'website', 'location', 'occupation', 'interests', 'signature', 'viewemail', 'notifypm', 'popuppm', 'notifyreply', 'attachsig', 'allowhtml', 'allowbbcode', 'allowsmilies', 'hideonline', 'style', 'language', 'timezone', 'dateformat');
$s_hidden_vars = '<input type="hidden" name="agreed" value="true" />';
--- 312,316 ----
}
! $params = array('coppa', 'user_id', 'username', 'email', 'current_email', 'icq', 'aim', 'msn', 'yim', 'website', 'location', 'occupation', 'interests', 'signature', 'viewemail', 'notifypm', 'popuppm', 'notifyreply', 'attachsig', 'allowhtml', 'allowbbcode', 'allowsmilies', 'allowviewonline', 'style', 'language', 'timezone', 'dateformat');
$s_hidden_vars = '<input type="hidden" name="agreed" value="true" />';
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 21:50:11
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv26750
Modified Files:
posting.php
Log Message:
Change redirection header for not logged in redirect ...
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.153
retrieving revision 1.154
diff -C2 -r1.153 -r1.154
*** posting.php 21 Mar 2002 01:03:47 -0000 1.153
--- posting.php 22 Mar 2002 21:50:05 -0000 1.154
***************
*** 335,339 ****
}
! header("Location: " . append_sid("login.$phpEx?redirect=posting.$phpEx&" . $redirect, true));
exit;
}
--- 335,340 ----
}
! $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: ";
! header($header_location . append_sid("login.$phpEx?redirect=posting.$phpEx&" . $redirect, true));
exit;
}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 19:33:33
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv23745/includes
Modified Files:
emailer.php
Log Message:
Alter way variables are substituted ... was causing problems when a [] followed a {VAR} in the email ...
Index: emailer.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/emailer.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** emailer.php 18 Mar 2002 23:53:12 -0000 1.14
--- emailer.php 22 Mar 2002 19:33:28 -0000 1.15
***************
*** 155,166 ****
}
- //$this->mailMsg = ereg_replace("<!!( )*([^>]*)( )*!!>", '$this->arrPlaceHolders['."\\2".']', $this->mailMsg);
- // $this->msg = ereg_replace("{( )*([^>]*)( )*}", '$'."\\2", $this->msg);
- $this->msg = preg_replace('#\{([a-z0-9\-_]*?)\}#is', '$'."\\1", $this->msg);
-
// Escape all quotes, else the eval will fail.
! $this->msg = str_replace ("\"", "\\\"", $this->msg);
! eval("\$this->msg = \"$this->msg\";");
//
--- 155,163 ----
}
// Escape all quotes, else the eval will fail.
! $this->msg = str_replace ("'", "\'", $this->msg);
! $this->msg = preg_replace('#\{([a-z0-9\-_]*?)\}#is', "' . $\\1 . '", $this->msg);
! eval("\$this->msg = '$this->msg';");
//
***************
*** 171,175 ****
preg_match("/^(Subject:(.*?)[\r\n]+?)?(.*?)$/is", $this->msg, $match);
! $this->msg = ( isset($match[3]) ) ? trim($match[3]) : "";
$this->subject = ( $this->subject != '' ) ? $this->subject : trim($match[2]);
--- 168,172 ----
preg_match("/^(Subject:(.*?)[\r\n]+?)?(.*?)$/is", $this->msg, $match);
! $this->msg = ( isset($match[3]) ) ? trim($match[3]) : '';
$this->subject = ( $this->subject != '' ) ? $this->subject : trim($match[2]);
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 19:32:41
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv23548/includes
Modified Files:
usercp_email.php
Log Message:
Minor change ... don't strip_tags ... I don't think this is a security issue but it could use checking ... everyone be aware of my being unsure before using this!
Index: usercp_email.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_email.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** usercp_email.php 19 Mar 2002 21:54:47 -0000 1.5
--- usercp_email.php 22 Mar 2002 19:32:35 -0000 1.6
***************
*** 67,71 ****
if ( !empty($HTTP_POST_VARS['subject']) )
{
! $subject = trim(strip_tags(stripslashes($HTTP_POST_VARS['subject'])));
}
else
--- 67,71 ----
if ( !empty($HTTP_POST_VARS['subject']) )
{
! $subject = trim(stripslashes($HTTP_POST_VARS['subject']));
}
else
***************
*** 77,81 ****
if ( !empty($HTTP_POST_VARS['message']) )
{
! $message = trim(strip_tags(stripslashes($HTTP_POST_VARS['message'])));
}
else
--- 77,81 ----
if ( !empty($HTTP_POST_VARS['message']) )
{
! $message = trim(stripslashes($HTTP_POST_VARS['message']));
}
else
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 18:46:35
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv10264/includes
Modified Files:
page_header.php
Log Message:
Suggested alteration of cache control header by Nathan
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.102
retrieving revision 1.103
diff -C2 -r1.102 -r1.103
*** page_header.php 19 Mar 2002 21:10:14 -0000 1.102
--- page_header.php 22 Mar 2002 18:46:31 -0000 1.103
***************
*** 36,51 ****
$phpver = phpversion();
! if($phpver >= "4.0.4pl1")
{
! if(extension_loaded("zlib"))
{
! ob_start("ob_gzhandler");
}
}
! else if($phpver > "4.0")
{
if(strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip'))
{
! if(extension_loaded("zlib"))
{
$do_gzip_compress = TRUE;
--- 36,51 ----
$phpver = phpversion();
! if($phpver >= '4.0.4pl1')
{
! if(extension_loaded('zlib'))
{
! ob_start('ob_gzhandler');
}
}
! else if($phpver > '4.0')
{
if(strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip'))
{
! if(extension_loaded('zlib'))
{
$do_gzip_compress = TRUE;
***************
*** 53,57 ****
ob_implicit_flush(0);
! header("Content-Encoding: gzip");
}
}
--- 53,57 ----
ob_implicit_flush(0);
! header('Content-Encoding: gzip');
}
}
***************
*** 62,77 ****
// Parse and show the overall header.
//
! if( empty($gen_simple_header) )
! {
! $template->set_filenames(array(
! "overall_header" => "overall_header.tpl")
! );
! }
! else
! {
! $template->set_filenames(array(
! "overall_header" => "simple_header.tpl")
! );
! }
//
--- 62,68 ----
// Parse and show the overall header.
//
! $template->set_filenames(array(
! 'overall_header' => ( empty($gen_simple_header) ) ? 'overall_header.tpl' : 'simple_header.tpl')
! );
//
***************
*** 81,85 ****
{
$u_login_logout = "login.$phpEx?logout=true";
! $l_login_logout = $lang['Logout'] . " [ " . $userdata["username"] . " ]";
}
else
--- 72,76 ----
{
$u_login_logout = "login.$phpEx?logout=true";
! $l_login_logout = $lang['Logout'] . ' [ ' . $userdata["username"] . ' ]';
}
else
***************
*** 89,93 ****
}
! $s_last_visit = ( $userdata['session_logged_in'] ) ? create_date($board_config['default_dateformat'], $userdata['user_lastvisit'], $board_config['board_timezone']) : "";
//
--- 80,84 ----
}
! $s_last_visit = ( $userdata['session_logged_in'] ) ? create_date($board_config['default_dateformat'], $userdata['user_lastvisit'], $board_config['board_timezone']) : '';
//
***************
*** 96,100 ****
//
$user_forum_sql = ( !empty($forum_id) ) ? "AND ( u.user_session_page = $forum_id
! OR s.session_page = $forum_id)" : "";
$sql = "SELECT u.username, u.user_id, u.user_allow_viewonline, u.user_level, s.session_logged_in, s.session_ip
--- 87,91 ----
//
$user_forum_sql = ( !empty($forum_id) ) ? "AND ( u.user_session_page = $forum_id
! OR s.session_page = $forum_id)" : '';
$sql = "SELECT u.username, u.user_id, u.user_allow_viewonline, u.user_level, s.session_logged_in, s.session_ip
***************
*** 108,112 ****
if(!$result)
{
! message_die(GENERAL_ERROR, "Couldn't obtain user/online information.", "", __LINE__, __FILE__, $sql);
}
--- 99,103 ----
if(!$result)
{
! message_die(GENERAL_ERROR, 'Could not obtain user/online information', '', __LINE__, __FILE__, $sql);
}
***************
*** 117,121 ****
$logged_hidden_online = 0;
$guests_online = 0;
! $online_userlist = "";
$prev_user_id = 0;
--- 108,112 ----
$logged_hidden_online = 0;
$guests_online = 0;
! $online_userlist = '';
$prev_user_id = 0;
***************
*** 130,134 ****
if( $row['user_id'] != $prev_user_id )
{
! $style_color = "";
if( $row['user_level'] == ADMIN )
{
--- 121,125 ----
if( $row['user_id'] != $prev_user_id )
{
! $style_color = '';
if( $row['user_level'] == ADMIN )
{
***************
*** 176,191 ****
$online_userlist = $lang['None'];
}
! $online_userlist = ( ( isset($forum_id) ) ? $lang['Browsing_forum'] : $lang['Registered_users'] ) . " " . $online_userlist;
$total_online_users = $logged_visible_online + $logged_hidden_online + $guests_online;
! if($total_online_users > $board_config['record_online_users'])
{
$sql = "UPDATE " . CONFIG_TABLE . "
SET config_value = '$total_online_users'
WHERE config_name = 'record_online_users'";
! if( !$result = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, "Couldn't update online user record (nr of users)", "", __LINE__, __FILE__, $sql);
}
--- 167,182 ----
$online_userlist = $lang['None'];
}
! $online_userlist = ( ( isset($forum_id) ) ? $lang['Browsing_forum'] : $lang['Registered_users'] ) . ' ' . $online_userlist;
$total_online_users = $logged_visible_online + $logged_hidden_online + $guests_online;
! if ( $total_online_users > $board_config['record_online_users'])
{
$sql = "UPDATE " . CONFIG_TABLE . "
SET config_value = '$total_online_users'
WHERE config_name = 'record_online_users'";
! if ( !$result = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, 'Could not update online user record (nr of users)', '', __LINE__, __FILE__, $sql);
}
***************
*** 193,199 ****
SET config_value = '" . time() . "'
WHERE config_name = 'record_online_date'";
! if( !$result = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, "Couldn't update online user record (date)", "", __LINE__, __FILE__, $sql);
}
--- 184,190 ----
SET config_value = '" . time() . "'
WHERE config_name = 'record_online_date'";
! if ( !$result = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, 'Could not update online user record (date)', '', __LINE__, __FILE__, $sql);
}
***************
*** 277,281 ****
if( !$status = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, "Could not update private message new/read time for user.", "", __LINE__, __FILE__, $sql);
}
--- 268,272 ----
if( !$status = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, 'Could not update private message new/read time for user', '', __LINE__, __FILE__, $sql);
}
***************
*** 342,463 ****
//
$template->assign_vars(array(
! "SITENAME" => $board_config['sitename'],
! "SITE_DESCRIPTION" => $board_config['site_desc'],
! "PAGE_TITLE" => $page_title,
! "TOTAL_USERS_ONLINE" => $l_online_users,
! "LOGGED_IN_USER_LIST" => $online_userlist,
! "PRIVATE_MESSAGE_INFO" => $l_privmsgs_text,
! "PRIVATE_MESSAGE_INFO_UNREAD" => $l_privmsgs_text_unread,
! "PRIVATE_MESSAGE_NEW_FLAG" => $s_privmsg_new,
! "LAST_VISIT_DATE" => sprintf($lang['You_last_visit'], $s_last_visit),
! "CURRENT_TIME" => sprintf($lang['Current_time'], create_date($board_config['default_dateformat'], time(), $board_config['board_timezone'])),
!
! "PRIVMSG_IMG" => $icon_pm,
!
! "L_USERNAME" => $lang['Username'],
! "L_PASSWORD" => $lang['Password'],
! "L_LOGIN" => $lang['Login'],
! "L_LOG_ME_IN" => $lang['Log_me_in'],
! "L_INDEX" => sprintf($lang['Forum_Index'], $board_config['sitename']),
! "L_REGISTER" => $lang['Register'],
! "L_PROFILE" => $lang['Profile'],
! "L_SEARCH" => $lang['Search'],
! "L_PRIVATEMSGS" => $lang['Private_Messages'],
! "L_WHO_IS_ONLINE" => $lang['Who_is_Online'],
! "L_MEMBERLIST" => $lang['Memberlist'],
! "L_FAQ" => $lang['FAQ'],
! "L_USERGROUPS" => $lang['Usergroups'],
! "L_FORUM" => $lang['Forum'],
! "L_TOPICS" => $lang['Topics'],
! "L_REPLIES" => $lang['Replies'],
! "L_VIEWS" => $lang['Views'],
! "L_POSTS" => $lang['Posts'],
! "L_LASTPOST" => $lang['Last_Post'],
! "L_NO_NEW_POSTS" => $lang['No_new_posts'],
! "L_NEW_POSTS" => $lang['New_posts'],
! "L_NO_NEW_POSTS_HOT" => $lang['No_new_posts_hot'],
! "L_NEW_POSTS_HOT" => $lang['New_posts_hot'],
! "L_NO_NEW_POSTS_LOCKED" => $lang['No_new_posts_locked'],
! "L_NEW_POSTS_LOCKED" => $lang['New_posts_locked'],
! "L_ANNOUNCEMENT" => $lang['Post_Announcement'],
! "L_STICKY" => $lang['Post_Sticky'],
! "L_POSTED" => $lang['Posted'],
! "L_JOINED" => $lang['Joined'],
! "L_AUTO_LOGIN" => $lang['Log_me_in'],
! "L_AUTHOR" => $lang['Author'],
! "L_SUBJECT" => $lang['Subject'],
! "L_MESSAGE" => $lang['Message'],
! "L_LOGIN_LOGOUT" => $l_login_logout,
! "L_SEARCH_NEW" => $lang['Search_new'],
! "L_SEARCH_UNANSWERED" => $lang['Search_unanswered'],
! "L_SEARCH_SELF" => $lang['Search_your_posts'],
! "L_WHOSONLINE_ADMIN" => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'),
! "L_WHOSONLINE_MOD" => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),
! "L_RECORD_USERS" => sprintf($lang['Record_online_users'], $board_config['record_online_users'], create_date($board_config['default_dateformat'], $board_config['record_online_date'], $board_config['board_timezone'])),
!
! "U_SEARCH_UNANSWERED" => append_sid("search.".$phpEx."?search_id=unanswered"),
! "U_SEARCH_SELF" => append_sid("search.".$phpEx."?search_id=egosearch"),
! "U_SEARCH_NEW" => append_sid("search.$phpEx?search_id=newposts"),
! "U_INDEX" => append_sid("index.".$phpEx),
! "U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
! "U_PROFILE" => append_sid("profile.".$phpEx."?mode=editprofile"),
! "U_PRIVATEMSGS" => append_sid("privmsg.".$phpEx."?folder=inbox"),
! "U_PRIVATEMSGS_POPUP" => append_sid("privmsg.".$phpEx."?mode=newpm"),
! "U_SEARCH" => append_sid("search.".$phpEx),
! "U_MEMBERLIST" => append_sid("memberlist.".$phpEx),
! "U_MODCP" => append_sid("modcp.".$phpEx),
! "U_FAQ" => append_sid("faq.".$phpEx),
! "U_VIEWONLINE" => append_sid("viewonline.$phpEx"),
! "U_LOGIN_LOGOUT" => append_sid($u_login_logout),
! "U_MEMBERSLIST" => append_sid("memberlist.".$phpEx),
! "U_GROUP_CP" => append_sid("groupcp.".$phpEx),
!
! "S_CONTENT_DIRECTION" => $lang['DIRECTION'],
! "S_CONTENT_ENCODING" => $lang['ENCODING'],
! "S_CONTENT_DIR_LEFT" => $lang['LEFT'],
! "S_CONTENT_DIR_RIGHT" => $lang['RIGHT'],
! "S_TIMEZONE" => sprintf($lang['All_times'], $lang[$board_config['board_timezone']]),
! "S_LOGIN_ACTION" => append_sid("login.$phpEx"),
!
! "T_HEAD_STYLESHEET" => $theme['head_stylesheet'],
! "T_BODY_BACKGROUND" => $theme['body_background'],
! "T_BODY_BGCOLOR" => "#".$theme['body_bgcolor'],
! "T_BODY_TEXT" => "#".$theme['body_text'],
! "T_BODY_LINK" => "#".$theme['body_link'],
! "T_BODY_VLINK" => "#".$theme['body_vlink'],
! "T_BODY_ALINK" => "#".$theme['body_alink'],
! "T_BODY_HLINK" => "#".$theme['body_hlink'],
! "T_TR_COLOR1" => "#".$theme['tr_color1'],
! "T_TR_COLOR2" => "#".$theme['tr_color2'],
! "T_TR_COLOR3" => "#".$theme['tr_color3'],
! "T_TR_CLASS1" => $theme['tr_class1'],
! "T_TR_CLASS2" => $theme['tr_class2'],
! "T_TR_CLASS3" => $theme['tr_class3'],
! "T_TH_COLOR1" => "#".$theme['th_color1'],
! "T_TH_COLOR2" => "#".$theme['th_color2'],
! "T_TH_COLOR3" => "#".$theme['th_color3'],
! "T_TH_CLASS1" => $theme['th_class1'],
! "T_TH_CLASS2" => $theme['th_class2'],
! "T_TH_CLASS3" => $theme['th_class3'],
! "T_TD_COLOR1" => "#".$theme['td_color1'],
! "T_TD_COLOR2" => "#".$theme['td_color2'],
! "T_TD_COLOR3" => "#".$theme['td_color3'],
! "T_TD_CLASS1" => $theme['td_class1'],
! "T_TD_CLASS2" => $theme['td_class2'],
! "T_TD_CLASS3" => $theme['td_class3'],
! "T_FONTFACE1" => $theme['fontface1'],
! "T_FONTFACE2" => $theme['fontface2'],
! "T_FONTFACE3" => $theme['fontface3'],
! "T_FONTSIZE1" => $theme['fontsize1'],
! "T_FONTSIZE2" => $theme['fontsize2'],
! "T_FONTSIZE3" => $theme['fontsize3'],
! "T_FONTCOLOR1" => "#".$theme['fontcolor1'],
! "T_FONTCOLOR2" => "#".$theme['fontcolor2'],
! "T_FONTCOLOR3" => "#".$theme['fontcolor3'],
! "T_SPAN_CLASS1" => $theme['span_class1'],
! "T_SPAN_CLASS2" => $theme['span_class2'],
! "T_SPAN_CLASS3" => $theme['span_class3'],
! "NAV_LINKS" => $nav_links_html)
);
--- 333,454 ----
//
$template->assign_vars(array(
! 'SITENAME' => $board_config['sitename'],
! 'SITE_DESCRIPTION' => $board_config['site_desc'],
! 'PAGE_TITLE' => $page_title,
! 'TOTAL_USERS_ONLINE' => $l_online_users,
! 'LOGGED_IN_USER_LIST' => $online_userlist,
! 'PRIVATE_MESSAGE_INFO' => $l_privmsgs_text,
! 'PRIVATE_MESSAGE_INFO_UNREAD' => $l_privmsgs_text_unread,
! 'PRIVATE_MESSAGE_NEW_FLAG' => $s_privmsg_new,
! 'LAST_VISIT_DATE' => sprintf($lang['You_last_visit'], $s_last_visit),
! 'CURRENT_TIME' => sprintf($lang['Current_time'], create_date($board_config['default_dateformat'], time(), $board_config['board_timezone'])),
!
! 'PRIVMSG_IMG' => $icon_pm,
!
! 'L_USERNAME' => $lang['Username'],
! 'L_PASSWORD' => $lang['Password'],
! 'L_LOGIN' => $lang['Login'],
! 'L_LOG_ME_IN' => $lang['Log_me_in'],
! 'L_INDEX' => sprintf($lang['Forum_Index'], $board_config['sitename']),
! 'L_REGISTER' => $lang['Register'],
! 'L_PROFILE' => $lang['Profile'],
! 'L_SEARCH' => $lang['Search'],
! 'L_PRIVATEMSGS' => $lang['Private_Messages'],
! 'L_WHO_IS_ONLINE' => $lang['Who_is_Online'],
! 'L_MEMBERLIST' => $lang['Memberlist'],
! 'L_FAQ' => $lang['FAQ'],
! 'L_USERGROUPS' => $lang['Usergroups'],
! 'L_FORUM' => $lang['Forum'],
! 'L_TOPICS' => $lang['Topics'],
! 'L_REPLIES' => $lang['Replies'],
! 'L_VIEWS' => $lang['Views'],
! 'L_POSTS' => $lang['Posts'],
! 'L_LASTPOST' => $lang['Last_Post'],
! 'L_NO_NEW_POSTS' => $lang['No_new_posts'],
! 'L_NEW_POSTS' => $lang['New_posts'],
! 'L_NO_NEW_POSTS_HOT' => $lang['No_new_posts_hot'],
! 'L_NEW_POSTS_HOT' => $lang['New_posts_hot'],
! 'L_NO_NEW_POSTS_LOCKED' => $lang['No_new_posts_locked'],
! 'L_NEW_POSTS_LOCKED' => $lang['New_posts_locked'],
! 'L_ANNOUNCEMENT' => $lang['Post_Announcement'],
! 'L_STICKY' => $lang['Post_Sticky'],
! 'L_POSTED' => $lang['Posted'],
! 'L_JOINED' => $lang['Joined'],
! 'L_AUTO_LOGIN' => $lang['Log_me_in'],
! 'L_AUTHOR' => $lang['Author'],
! 'L_SUBJECT' => $lang['Subject'],
! 'L_MESSAGE' => $lang['Message'],
! 'L_LOGIN_LOGOUT' => $l_login_logout,
! 'L_SEARCH_NEW' => $lang['Search_new'],
! 'L_SEARCH_UNANSWERED' => $lang['Search_unanswered'],
! 'L_SEARCH_SELF' => $lang['Search_your_posts'],
! 'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'),
! 'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),
! 'L_RECORD_USERS' => sprintf($lang['Record_online_users'], $board_config['record_online_users'], create_date($board_config['default_dateformat'], $board_config['record_online_date'], $board_config['board_timezone'])),
!
! 'U_SEARCH_UNANSWERED' => append_sid('search.'.$phpEx.'?search_id=unanswered'),
! 'U_SEARCH_SELF' => append_sid('search.'.$phpEx.'?search_id=egosearch'),
! 'U_SEARCH_NEW' => append_sid('search.'.$phpEx.'?search_id=newposts'),
! 'U_INDEX' => append_sid('index.'.$phpEx),
! 'U_REGISTER' => append_sid('profile.'.$phpEx.'?mode=register'),
! 'U_PROFILE' => append_sid('profile.'.$phpEx.'?mode=editprofile'),
! 'U_PRIVATEMSGS' => append_sid('privmsg.'.$phpEx.'?folder=inbox'),
! 'U_PRIVATEMSGS_POPUP' => append_sid('privmsg.'.$phpEx.'?mode=newpm'),
! 'U_SEARCH' => append_sid('search.'.$phpEx),
! 'U_MEMBERLIST' => append_sid('memberlist.'.$phpEx),
! 'U_MODCP' => append_sid('modcp.'.$phpEx),
! 'U_FAQ' => append_sid('faq.'.$phpEx),
! 'U_VIEWONLINE' => append_sid('viewonline.'.$phpEx),
! 'U_LOGIN_LOGOUT' => append_sid($u_login_logout),
! 'U_MEMBERSLIST' => append_sid('memberlist.'.$phpEx),
! 'U_GROUP_CP' => append_sid('groupcp.'.$phpEx),
!
! 'S_CONTENT_DIRECTION' => $lang['DIRECTION'],
! 'S_CONTENT_ENCODING' => $lang['ENCODING'],
! 'S_CONTENT_DIR_LEFT' => $lang['LEFT'],
! 'S_CONTENT_DIR_RIGHT' => $lang['RIGHT'],
! 'S_TIMEZONE' => sprintf($lang['All_times'], $lang[$board_config['board_timezone']]),
! 'S_LOGIN_ACTION' => append_sid('login.'.$phpEx),
!
! 'T_HEAD_STYLESHEET' => $theme['head_stylesheet'],
! 'T_BODY_BACKGROUND' => $theme['body_background'],
! 'T_BODY_BGCOLOR' => '#'.$theme['body_bgcolor'],
! 'T_BODY_TEXT' => '#'.$theme['body_text'],
! 'T_BODY_LINK' => '#'.$theme['body_link'],
! 'T_BODY_VLINK' => '#'.$theme['body_vlink'],
! 'T_BODY_ALINK' => '#'.$theme['body_alink'],
! 'T_BODY_HLINK' => '#'.$theme['body_hlink'],
! 'T_TR_COLOR1' => '#'.$theme['tr_color1'],
! 'T_TR_COLOR2' => '#'.$theme['tr_color2'],
! 'T_TR_COLOR3' => '#'.$theme['tr_color3'],
! 'T_TR_CLASS1' => $theme['tr_class1'],
! 'T_TR_CLASS2' => $theme['tr_class2'],
! 'T_TR_CLASS3' => $theme['tr_class3'],
! 'T_TH_COLOR1' => '#'.$theme['th_color1'],
! 'T_TH_COLOR2' => '#'.$theme['th_color2'],
! 'T_TH_COLOR3' => '#'.$theme['th_color3'],
! 'T_TH_CLASS1' => $theme['th_class1'],
! 'T_TH_CLASS2' => $theme['th_class2'],
! 'T_TH_CLASS3' => $theme['th_class3'],
! 'T_TD_COLOR1' => '#'.$theme['td_color1'],
! 'T_TD_COLOR2' => '#'.$theme['td_color2'],
! 'T_TD_COLOR3' => '#'.$theme['td_color3'],
! 'T_TD_CLASS1' => $theme['td_class1'],
! 'T_TD_CLASS2' => $theme['td_class2'],
! 'T_TD_CLASS3' => $theme['td_class3'],
! 'T_FONTFACE1' => $theme['fontface1'],
! 'T_FONTFACE2' => $theme['fontface2'],
! 'T_FONTFACE3' => $theme['fontface3'],
! 'T_FONTSIZE1' => $theme['fontsize1'],
! 'T_FONTSIZE2' => $theme['fontsize2'],
! 'T_FONTSIZE3' => $theme['fontsize3'],
! 'T_FONTCOLOR1' => '#'.$theme['fontcolor1'],
! 'T_FONTCOLOR2' => '#'.$theme['fontcolor2'],
! 'T_FONTCOLOR3' => '#'.$theme['fontcolor3'],
! 'T_SPAN_CLASS1' => $theme['span_class1'],
! 'T_SPAN_CLASS2' => $theme['span_class2'],
! 'T_SPAN_CLASS3' => $theme['span_class3'],
! 'NAV_LINKS' => $nav_links_html)
);
***************
*** 467,488 ****
if( !$userdata['session_logged_in'] )
{
! $template->assign_block_vars("switch_user_logged_out", array());
}
else
{
! $template->assign_block_vars("switch_user_logged_in", array());
if( !empty($userdata['user_popup_pm']) )
{
! $template->assign_block_vars("switch_enable_pm_popup", array());
}
}
! header ("Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0");
! header ("Pragma: no-cache");
! header ("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
! header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
! $template->pparse("overall_header");
! ?>
--- 458,479 ----
if( !$userdata['session_logged_in'] )
{
! $template->assign_block_vars('switch_user_logged_out', array());
}
else
{
! $template->assign_block_vars('switch_user_logged_in', array());
if( !empty($userdata['user_popup_pm']) )
{
! $template->assign_block_vars('switch_enable_pm_popup', array());
}
}
! header ('Cache-Control: private, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0');
! header ('Pragma: no-cache');
! header ('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
! header ('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
! $template->pparse('overall_header');
! ?>
\ No newline at end of file
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 18:07:45
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/admin
In directory usw-pr-cvs1:/tmp/cvs-serv31462/templates/subSilver/admin
Modified Files:
forum_admin_body.tpl
Log Message:
Fix borders around cat cells
Index: forum_admin_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/admin/forum_admin_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** forum_admin_body.tpl 14 Oct 2001 15:55:50 -0000 1.1
--- forum_admin_body.tpl 22 Mar 2002 18:07:41 -0000 1.2
***************
*** 10,18 ****
<!-- BEGIN catrow -->
<tr>
! <td class="cat" colspan="3"><span class="cattitle"><b><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></b></span></td>
<td class="cat" align="center" valign="middle"><span class="gen"><a href="{catrow.U_CAT_EDIT}">{L_EDIT}</a></span></td>
<td class="cat" align="center" valign="middle"><span class="gen"><a href="{catrow.U_CAT_DELETE}">{L_DELETE}</a></span></td>
<td class="cat" align="center" valign="middle" nowrap="nowrap"><span class="gen"><a href="{catrow.U_CAT_MOVE_UP}">{L_MOVE_UP}</a> <a href="{catrow.U_CAT_MOVE_DOWN}">{L_MOVE_DOWN}</a></span></td>
! <td class="cat" align="center" valign="middle"><span class="gen"> </span></td>
</tr>
<!-- BEGIN forumrow -->
--- 10,18 ----
<!-- BEGIN catrow -->
<tr>
! <td class="catLeft" colspan="3"><span class="cattitle"><b><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></b></span></td>
<td class="cat" align="center" valign="middle"><span class="gen"><a href="{catrow.U_CAT_EDIT}">{L_EDIT}</a></span></td>
<td class="cat" align="center" valign="middle"><span class="gen"><a href="{catrow.U_CAT_DELETE}">{L_DELETE}</a></span></td>
<td class="cat" align="center" valign="middle" nowrap="nowrap"><span class="gen"><a href="{catrow.U_CAT_MOVE_UP}">{L_MOVE_UP}</a> <a href="{catrow.U_CAT_MOVE_DOWN}">{L_MOVE_DOWN}</a></span></td>
! <td class="catRight" align="center" valign="middle"><span class="gen"> </span></td>
</tr>
<!-- BEGIN forumrow -->
***************
*** 35,39 ****
<!-- END catrow -->
<tr>
! <td colspan="7" class="cat"><input type="text" name="categoryname" /> <input type="submit" class="liteoption" name="addcategory" value="{L_CREATE_CATEGORY}" /></td>
</tr>
</table></form>
--- 35,39 ----
<!-- END catrow -->
<tr>
! <td colspan="7" class="catBottom"><input type="text" name="categoryname" /> <input type="submit" class="liteoption" name="addcategory" value="{L_CREATE_CATEGORY}" /></td>
</tr>
</table></form>
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 18:07:21
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv31356/templates/subSilver
Modified Files:
subSilver.css
Log Message:
Change td.cat to zero border
Index: subSilver.css
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/subSilver.css,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** subSilver.css 2 Mar 2002 20:46:09 -0000 1.6
--- subSilver.css 22 Mar 2002 18:07:17 -0000 1.7
***************
*** 73,76 ****
--- 73,77 ----
td.cat,td.catHead,td.catBottom {
height: 29px;
+ border-width: 0px 0px 0px 0px;
}
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
|
|
From: Paul S. O. <ps...@us...> - 2002-03-22 18:07:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv31311/templates/subSilver
Modified Files:
overall_header.tpl
Log Message:
Change td.cat to zero border
Index: overall_header.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/overall_header.tpl,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** overall_header.tpl 19 Mar 2002 01:04:32 -0000 1.24
--- overall_header.tpl 22 Mar 2002 18:07:09 -0000 1.25
***************
*** 86,89 ****
--- 86,90 ----
td.cat,td.catHead,td.catBottom {
height: 29px;
+ border-width: 0px 0px 0px 0px;
}
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
|