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: James A. <th...@us...> - 2002-06-27 20:06:47
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv28883/includes
Modified Files:
Tag: phpBB-2_0_0
sessions.php usercp_register.php
Log Message:
Fixes for bugs: 387, 519, 522, and 456
Index: sessions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/sessions.php,v
retrieving revision 1.58.2.4
retrieving revision 1.58.2.5
diff -C2 -r1.58.2.4 -r1.58.2.5
*** sessions.php 20 Jun 2002 17:01:23 -0000 1.58.2.4
--- sessions.php 27 Jun 2002 20:06:44 -0000 1.58.2.5
***************
*** 118,123 ****
if ( $user_id != ANONYMOUS )
{
! $sql .= " OR ban_email LIKE '" . str_replace("\'", "''", $row['user_email']) . "'
! OR ban_email LIKE '" . substr(str_replace("\'", "''", $row['user_email']), strpos(str_replace("\'", "''", $row['user_email']), "@")) . "'";
}
if ( !($result = $db->sql_query($sql)) )
--- 118,123 ----
if ( $user_id != ANONYMOUS )
{
! $sql .= " OR ban_email LIKE '" . str_replace("\'", "''", $userdata['user_email']) . "'
! OR ban_email LIKE '" . substr(str_replace("\'", "''", $userdata['user_email']), strpos(str_replace("\'", "''", $userdata['user_email']), "@")) . "'";
}
if ( !($result = $db->sql_query($sql)) )
Index: usercp_register.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_register.php,v
retrieving revision 1.20.2.13
retrieving revision 1.20.2.14
diff -C2 -r1.20.2.13 -r1.20.2.14
*** usercp_register.php 23 Jun 2002 02:47:56 -0000 1.20.2.13
--- usercp_register.php 27 Jun 2002 20:06:44 -0000 1.20.2.14
***************
*** 606,610 ****
if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN )
{
! $emailer->use_template("admin_activate", stripslashes($user_lang));
$emailer->email_address($board_config['board_email']);
$emailer->set_subject(); //$lang['New_account_subject']
--- 606,611 ----
if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN )
{
! //$emailer->use_template("admin_activate", stripslashes($user_lang));
! $emailer->use_template("admin_activate", $board_config['default_lang']);
$emailer->email_address($board_config['board_email']);
$emailer->set_subject(); //$lang['New_account_subject']
|
|
From: Doug K. <dou...@us...> - 2002-06-27 19:55:31
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv24908/db/schemas
Modified Files:
mysql_schema.sql
Log Message:
Ok, a schema fix... Not a terrible problem....
Index: mysql_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_schema.sql,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** mysql_schema.sql 21 Jun 2002 22:40:29 -0000 1.24
--- mysql_schema.sql 27 Jun 2002 19:55:26 -0000 1.25
***************
*** 15,19 ****
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1'
! )
--- 15,19 ----
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1'
! );
***************
*** 25,29 ****
auth_option char(20) NOT NULL default '',
PRIMARY KEY (auth_option_id,auth_option)
! )
--- 25,29 ----
auth_option char(20) NOT NULL default '',
PRIMARY KEY (auth_option_id,auth_option)
! );
***************
*** 37,41 ****
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1')
! )
--- 37,41 ----
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1')
! );
***************
*** 49,53 ****
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1'
! )
--- 49,53 ----
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1'
! );
|
|
From: Doug K. <dou...@us...> - 2002-06-23 02:47:59
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english
In directory usw-pr-cvs1:/tmp/cvs-serv2600/language/lang_english
Modified Files:
Tag: phpBB-2_0_0
lang_main.php
Log Message:
Ok, I've done so much here, I can hardly remember what I've done...
There are various security updates throughout the commit, along with a few
bug fixes; I'll try to name them here.
---
Bug #453: Fixed.
Bug #485: Duplicate of #453, but still fixed.
Bug #476: Ok, the typo is fixed.
---
That should be it, but I'll have more fixes tomorrow. (Finally, I have
figured out regular expressions!!!)
--Doug
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/lang_main.php,v
retrieving revision 1.85.2.3
retrieving revision 1.85.2.4
diff -C2 -r1.85.2.3 -r1.85.2.4
*** lang_main.php 12 May 2002 17:57:34 -0000 1.85.2.3
--- lang_main.php 23 Jun 2002 02:47:56 -0000 1.85.2.4
***************
*** 631,635 ****
$lang['Agree_under_13'] = 'I Agree to these terms and am <b>under</b> 13 years of age';
! $lang['Agree_over_13'] = 'I Agree to these terms and am <b>over</b> 13 years of age';
$lang['Agree_not'] = 'I do not agree to these terms';
--- 631,635 ----
$lang['Agree_under_13'] = 'I Agree to these terms and am <b>under</b> 13 years of age';
! $lang['Agree_over_13'] = 'I Agree to these terms and am <b>over</b> or <b>exactly</b> 13 years of age';
$lang['Agree_not'] = 'I do not agree to these terms';
***************
*** 1006,1008 ****
// -------------------------------------------------
! ?>
\ No newline at end of file
--- 1006,1008 ----
// -------------------------------------------------
! ?>
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv2600/includes
Modified Files:
Tag: phpBB-2_0_0
bbcode.php functions.php functions_post.php usercp_avatar.php
usercp_register.php
Log Message:
Ok, I've done so much here, I can hardly remember what I've done...
There are various security updates throughout the commit, along with a few
bug fixes; I'll try to name them here.
---
Bug #453: Fixed.
Bug #485: Duplicate of #453, but still fixed.
Bug #476: Ok, the typo is fixed.
---
That should be it, but I'll have more fixes tomorrow. (Finally, I have
figured out regular expressions!!!)
--Doug
Index: bbcode.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/bbcode.php,v
retrieving revision 1.36.2.8
retrieving revision 1.36.2.9
diff -C2 -r1.36.2.8 -r1.36.2.9
*** bbcode.php 12 Jun 2002 05:33:54 -0000 1.36.2.8
--- bbcode.php 23 Jun 2002 02:47:55 -0000 1.36.2.9
***************
*** 283,287 ****
// [img]image_url_here[/img] code..
! $text = preg_replace("#\[img\]([http|https]+?://)([a-z0-9\-\.,\?!%\*_\#:;~\\&$@\/=\+]+)\[/img\]#si", "[img:$uid]\\1\\2[/img:$uid]", $text);
// Remove our padding from the string..
--- 283,287 ----
// [img]image_url_here[/img] code..
! $text = preg_replace("#\[img\](http(s)?://)([a-z0-9\-\.,\?!%\*_\#:;~\\&$@\/=\+]+)\[/img\]#si", "[img:$uid]\\1\\3[/img:$uid]", $text);
// Remove our padding from the string..
***************
*** 621,625 ****
// xxxx can only be alpha characters.
// yyyy is anything up to the first space, newline, or comma.
! $ret = preg_replace("#([\n ])([a-z]+?)://([^\t <\n\r]+)#i", "\\1<a href=\"\\2://\\3\" target=\"_blank\">\\2://\\3</a>", $ret);
// matches a "www.xxxx.yyyy[/zzzz]" kinda lazy URL thing
--- 621,625 ----
// xxxx can only be alpha characters.
// yyyy is anything up to the first space, newline, or comma.
! $ret = preg_replace("#([\n ])([a-z]+?)://([a-z0-9\-\.,\?!%\*_\#:;~\\&$@\/=\+]+)#i", "\\1<a href=\"\\2://\\3\" target=\"_blank\">\\2://\\3</a>", $ret);
// matches a "www.xxxx.yyyy[/zzzz]" kinda lazy URL thing
***************
*** 629,633 ****
// This is slightly restrictive - it's not going to match stuff like "forums.foo.com"
// This is to keep it from getting annoying and matching stuff that's not meant to be a link.
! $ret = preg_replace("#([\n ])www\.([a-z0-9\-]+)\.([a-z0-9\-.\~]+)((?:/[^\t <\n\r]*)?)#i", "\\1<a href=\"http://www.\\2.\\3\\4\" target=\"_blank\">www.\\2.\\3\\4</a>", $ret);
// matches an email@domain type address at the start of a line, or after a space.
--- 629,633 ----
// This is slightly restrictive - it's not going to match stuff like "forums.foo.com"
// This is to keep it from getting annoying and matching stuff that's not meant to be a link.
! $ret = preg_replace("#([\n ])www\.([a-z0-9\-]+)\.([a-z0-9\-.\~]+)((?:/[a-z0-9\-\.,\?!%\*_\#:;~\\&$@\/=\+]*)?)#i", "\\1<a href=\"http://www.\\2.\\3\\4\" target=\"_blank\">www.\\2.\\3\\4</a>", $ret);
// matches an email@domain type address at the start of a line, or after a space.
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.133.2.2
retrieving revision 1.133.2.3
diff -C2 -r1.133.2.2 -r1.133.2.3
*** functions.php 12 May 2002 00:47:40 -0000 1.133.2.2
--- functions.php 23 Jun 2002 02:47:55 -0000 1.133.2.3
***************
*** 671,674 ****
exit;
}
-
?>
--- 671,673 ----
Index: functions_post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions_post.php,v
retrieving revision 1.9.2.8
retrieving revision 1.9.2.9
diff -C2 -r1.9.2.8 -r1.9.2.9
*** functions_post.php 12 Jun 2002 05:33:54 -0000 1.9.2.8
--- functions_post.php 23 Jun 2002 02:47:56 -0000 1.9.2.9
***************
*** 75,85 ****
{
$match_tag = trim($allowed_html_tags[$i]);
!
! if ( preg_match('/^<\/?' . $match_tag . '\b/i', $hold_string) )
{
! if ( !preg_match('/style[="](.*?)["]/i', $hold_string) )
! {
! $tagallowed = true;
! }
}
}
--- 75,81 ----
{
$match_tag = trim($allowed_html_tags[$i]);
! if ( preg_match('/^<\/?' . $match_tag . '(?!(\s*)style(\s*)\\=)/i', $hold_string) )
{
! $tagallowed = true;
}
}
Index: usercp_avatar.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_avatar.php,v
retrieving revision 1.8.2.4
retrieving revision 1.8.2.5
diff -C2 -r1.8.2.4 -r1.8.2.5
*** usercp_avatar.php 12 May 2002 15:57:45 -0000 1.8.2.4
--- usercp_avatar.php 23 Jun 2002 02:47:56 -0000 1.8.2.5
***************
*** 70,73 ****
--- 70,74 ----
function user_avatar_url($mode, &$error, &$error_msg, $avatar_filename)
{
+ $avatar_filename = rawurlencode($avatar_filename);
if ( !preg_match('#^http:\/\/#i', $avatar_filename) )
{
***************
*** 75,79 ****
}
! if ( !preg_match('#^(http:\/\/[a-z0-9\-]+?\.([a-z0-9\-]+\.)*[a-z]+(:[0-9]+)*\/[^\"]*?\.(gif|jpg|jpeg|png)$)#is', $avatar_filename) )
{
$error = true;
--- 76,80 ----
}
! if ( !preg_match('#^(http:\/\/[a-z0-9\-]+?\.([a-z0-9\-]+\.)*[a-z]+(:[0-9]+)*\/\.(gif|jpg|jpeg|png)$)#is', $avatar_filename) )
{
$error = true;
Index: usercp_register.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_register.php,v
retrieving revision 1.20.2.12
retrieving revision 1.20.2.13
diff -C2 -r1.20.2.12 -r1.20.2.13
*** usercp_register.php 4 Jun 2002 04:14:17 -0000 1.20.2.12
--- usercp_register.php 23 Jun 2002 02:47:56 -0000 1.20.2.13
***************
*** 362,365 ****
--- 362,370 ----
}
+ if ( $website != '' )
+ {
+ rawurlencode($website);
+ }
+
if ( isset($HTTP_POST_VARS['avatardel']) && $mode == 'editprofile' )
{
|
|
From: Doug K. <dou...@us...> - 2002-06-23 02:47:58
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv2600/admin
Modified Files:
Tag: phpBB-2_0_0
admin_smilies.php
Log Message:
Ok, I've done so much here, I can hardly remember what I've done...
There are various security updates throughout the commit, along with a few
bug fixes; I'll try to name them here.
---
Bug #453: Fixed.
Bug #485: Duplicate of #453, but still fixed.
Bug #476: Ok, the typo is fixed.
---
That should be it, but I'll have more fixes tomorrow. (Finally, I have
figured out regular expressions!!!)
--Doug
Index: admin_smilies.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_smilies.php,v
retrieving revision 1.22.2.3
retrieving revision 1.22.2.4
diff -C2 -r1.22.2.3 -r1.22.2.4
*** admin_smilies.php 12 Jun 2002 16:06:17 -0000 1.22.2.3
--- admin_smilies.php 23 Jun 2002 02:47:55 -0000 1.22.2.4
***************
*** 266,270 ****
}
! else if( isset($HTTP_POST_VARS['add']) || isset($HTTP_GET_VARS['add'] )
{
//
--- 266,270 ----
}
! else if( isset($HTTP_POST_VARS['add']) || isset($HTTP_GET_VARS['add']) )
{
//
|
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:29
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv14587/includes
Modified Files:
auth_session.php
Log Message:
oops, that's what you get for not testing more thoroughly ...
Index: auth_session.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/auth_session.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** auth_session.php 11 Jun 2002 02:27:26 -0000 1.3
--- auth_session.php 22 Jun 2002 15:17:26 -0000 1.4
***************
*** 32,38 ****
$session_browser = ( !empty($HTTP_SERVER_VARS['HTTP_USER_AGENT']) ) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : $HTTP_ENV_VARS['HTTP_USER_AGENT'];
$this_page = ( !empty($HTTP_SERVER_VARS['PHP_SELF']) ) ? $HTTP_SERVER_VARS['PHP_SELF'] : $HTTP_ENV_VARS['PHP_SELF'];
! $this_query = ( !empty($HTTP_SERVER_VARS['QUERY_STRING']) ) ? explode('&', $HTTP_SERVER_VARS['QUERY_STRING']) : explode('&', $HTTP_ENV_VARS['QUERY_STRING']);
! array_shift($this_query);
! $this_page = $this_page . '&' . implode('&', $this_query);
if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) || isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data']) )
--- 32,36 ----
$session_browser = ( !empty($HTTP_SERVER_VARS['HTTP_USER_AGENT']) ) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : $HTTP_ENV_VARS['HTTP_USER_AGENT'];
$this_page = ( !empty($HTTP_SERVER_VARS['PHP_SELF']) ) ? $HTTP_SERVER_VARS['PHP_SELF'] : $HTTP_ENV_VARS['PHP_SELF'];
! $this_page .= '&' . ( ( !empty($HTTP_SERVER_VARS['QUERY_STRING']) ) ? $HTTP_SERVER_VARS['QUERY_STRING'] : $HTTP_ENV_VARS['QUERY_STRING'] );
if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) || isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data']) )
***************
*** 54,58 ****
if ( !empty($board_config['limit_load']) && file_exists('/proc/loadavg') )
{
! if ( $load = file('/proc/loadvg') )
{
$load = explode(' ', $load[0]);
--- 52,56 ----
if ( !empty($board_config['limit_load']) && file_exists('/proc/loadavg') )
{
! if ( $load = file('/proc/loadavg') )
{
$load = explode(' ', $load[0]);
***************
*** 139,155 ****
//
! // Limit 5 minute sessions
//
! $sql = "SELECT COUNT(*) AS sessions
! FROM " . SESSIONS_TABLE . "
! WHERE session_time >= " . ( $current_time - 3600 );
if ( !($result = $db->sql_query($sql)) )
{
! message_die(CRITICAL_ERROR, 'Could not obtain ban information', '', __LINE__, __FILE__, $sql);
}
!
$row = $db->sql_fetchrow[$result];
! if ( intval($board_config['active_sessions']) && $row['sessions'] >= $board_config['active_sessions'] )
{
message_die(GENERAL_MESSAGE, 'Board_unavailable', 'Information');
--- 137,164 ----
//
! // Limit connections (for MySQL) or 5 minute sessions (for other DB's)
//
! switch ( DB_LAYER )
! {
! case 'mysql':
! case 'mysql4':
! $sql = "SELECT COUNT(*) AS sessions
! FROM " . SESSIONS_TABLE . "
! WHERE session_time >= " . ( $current_time - 3600 );
! break;
! default:
! $sql = "SELECT COUNT(*) AS sessions
! FROM " . SESSIONS_TABLE . "
! WHERE session_time >= " . ( $current_time - 3600 );
! break;
! }
if ( !($result = $db->sql_query($sql)) )
{
! message_die(CRITICAL_ERROR, 'Could not obtain connection information', '', __LINE__, __FILE__, $sql);
}
!
$row = $db->sql_fetchrow[$result];
! if ( intval($board_config['active_sessions']) && $row['sessions'] >= intval($board_config['active_sessions']) )
{
message_die(GENERAL_MESSAGE, 'Board_unavailable', 'Information');
***************
*** 180,188 ****
FROM " . BANLIST_TABLE . "
WHERE ban_ip IN (
! '" . $user_ip_parts[1] . ".',
! '" . $user_ip_parts[1] . "." . $user_ip_parts[2] . ".',
! '" . $user_ip_parts[1] . "." . $user_ip_parts[2] . "." . $user_ip_parts[3] . ".',
! '" . $user_ip_parts[1] . "." . $user_ip_parts[2] . "." . $user_ip_parts[3] . "." . $user_ip_parts[4] . "')
! OR ban_userid = $user_id";
if ( $user_id != ANONYMOUS )
{
--- 189,197 ----
FROM " . BANLIST_TABLE . "
WHERE ban_ip IN (
! '" . $user_ip_parts[0] . ".',
! '" . $user_ip_parts[0] . "." . $user_ip_parts[1] . ".',
! '" . $user_ip_parts[0] . "." . $user_ip_parts[1] . "." . $user_ip_parts[2] . ".',
! '" . $user_ip_parts[0] . "." . $user_ip_parts[1] . "." . $user_ip_parts[2] . "." . $user_ip_parts[3] . "')
! OR ban_userid = " . $this->userdata['user_id'];
if ( $user_id != ANONYMOUS )
{
***************
*** 376,382 ****
$style = ( !$board_config['override_user_style'] && $this->userdata['user_id'] != ANONYMOUS && $this->userdata['user_style'] > 0 )? $this->userdata['user_style'] : $board_config['default_style'];
! $sql = "SELECT *
! FROM " . THEMES_TABLE . "
! WHERE themes_id = $style";
if ( !($result = $db->sql_query($sql)) )
{
--- 385,392 ----
$style = ( !$board_config['override_user_style'] && $this->userdata['user_id'] != ANONYMOUS && $this->userdata['user_style'] > 0 )? $this->userdata['user_style'] : $board_config['default_style'];
! $sql = "SELECT s.style_name, s.template_name, c.css_data, c.css_extra_data
! FROM " . STYLES_TABLE . " s, " . STYLES_CSS_TABLE . " c
! WHERE s.style_id = $style
! AND c.theme_id = s.style_id";
if ( !($result = $db->sql_query($sql)) )
{
***************
*** 389,392 ****
--- 399,407 ----
}
+ //
+ // Unserialize the extra data
+ //
+ $theme['css_extra_data'] = unserialize($theme['css_extra_data']);
+
$template_path = 'templates/' ;
$template_name = $theme['template_name'] ;
***************
*** 406,410 ****
$img_lang = ( file_exists($current_template_path . '/images/lang_' . $board_config['default_lang']) ) ? $board_config['default_lang'] : 'english';
! while( list($key, $value) = @each($images) )
{
if ( !is_array($value) )
--- 421,425 ----
$img_lang = ( file_exists($current_template_path . '/images/lang_' . $board_config['default_lang']) ) ? $board_config['default_lang'] : 'english';
! while ( list($key, $value) = @each($images) )
{
if ( !is_array($value) )
***************
*** 434,438 ****
$sql = "SELECT ag.forum_id, ag.auth_allow_deny, ao.auth_option
! FROM phpbb_user_group ug, phpbb_auth_groups ag, phpbb_auth_options ao
WHERE ug.user_id = " . $userdata['user_id'] . "
AND ag.group_id = ug.group_id
--- 449,453 ----
$sql = "SELECT ag.forum_id, ag.auth_allow_deny, ao.auth_option
! FROM " . USER_GROUP_TABLE . " ug, " . ACL_GROUPS_TABLE . " ag, " . ACL_OPTIONS_TABLE . " ao
WHERE ug.user_id = " . $userdata['user_id'] . "
AND ag.group_id = ug.group_id
***************
*** 455,459 ****
$sql = "SELECT au.forum_id, au.auth_allow_deny, ao.auth_option
! FROM phpbb_auth_users au, phpbb_auth_options ao
WHERE au.user_id = " . $userdata['user_id'] . "
AND ao.auth_option_id = au.auth_option_id";
--- 470,474 ----
$sql = "SELECT au.forum_id, au.auth_allow_deny, ao.auth_option
! FROM " . ACL_USERS_TABLE . " au, " . ACL_OPTIONS_TABLE . " ao
WHERE au.user_id = " . $userdata['user_id'] . "
AND ao.auth_option_id = au.auth_option_id";
***************
*** 567,573 ****
// Centralised login? May stay, may not ... depends if needed
//
! function login($username, $password)
{
! global $SID, $db, $board_config, $lang, $user_ip, $phpEx;
$result = false;
--- 582,592 ----
// Centralised login? May stay, may not ... depends if needed
//
! function login($username, $password, $autologin = false)
{
! global $SID, $db, $board_config, $lang, $user_ip;
! global $HTTP_SERVER_VARS, $HTTP_ENV_VARS;
!
! $this_page = ( !empty($HTTP_SERVER_VARS['PHP_SELF']) ) ? $HTTP_SERVER_VARS['PHP_SELF'] : $HTTP_ENV_VARS['PHP_SELF'];
! $this_page .= '&' . ( ( !empty($HTTP_SERVER_VARS['QUERY_STRING']) ) ? $HTTP_SERVER_VARS['QUERY_STRING'] : $HTTP_ENV_VARS['QUERY_STRING'] );
$result = false;
***************
*** 585,590 ****
if ( $row['user_level'] != ADMIN && $board_config['board_disable'] )
{
! header($header_location . "index.$phpEx$SID");
! exit;
}
--- 604,609 ----
if ( $row['user_level'] != ADMIN && $board_config['board_disable'] )
{
! // header($header_location . "index.$phpEx$SID");
! // exit;
}
***************
*** 603,607 ****
if ( md5($password) == $row['user_password'] && $row['user_active'] )
{
! $autologin = ( isset($HTTP_POST_VARS['autologin']) ) ? md5($password) : '';
$user_ip_parts = explode('.', $user_ip);
--- 622,626 ----
if ( md5($password) == $row['user_password'] && $row['user_active'] )
{
! $autologin = ( isset($autologin) ) ? md5($password) : '';
$user_ip_parts = explode('.', $user_ip);
***************
*** 641,645 ****
//
$sql = "UPDATE " . SESSIONS_TABLE . "
! SET session_user_id = " . $row['user_id'] . ", session_start = $current_time, session_time = $current_time, session_browser = '$session_browser', session_page = ''
WHERE session_id = '" . $userdata['session_id'] . "'";
if ( !$db->sql_query($sql) )
--- 660,664 ----
//
$sql = "UPDATE " . SESSIONS_TABLE . "
! SET session_user_id = " . $row['user_id'] . ", session_start = $current_time, session_time = $current_time, session_browser = '$session_browser', session_page = '$this_page'
WHERE session_id = '" . $userdata['session_id'] . "'";
if ( !$db->sql_query($sql) )
***************
*** 661,674 ****
return $result;
- }
-
- //
- //
- // This routine is dead instead we just set a URL$SID for
- // appropriate URLs rather than this append stuff
- //
- function append_sid($url, $non_html_amp = false)
- {
- return $url;
}
--- 680,683 ----
|
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:16
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_italian In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_italian Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:16
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_german In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_german Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:16
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_slovakian In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_slovakian Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:16
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_swedish In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_swedish Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:16
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_portuguese In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_portuguese Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:16
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_russian In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_russian Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:16
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_turkish In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_turkish Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:15
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_greek In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_greek Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:15
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_spanish In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_spanish Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:15
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_polish In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_polish Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:15
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_french In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_french Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:15
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_hungarian In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_hungarian Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:15
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_norwegian In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_norwegian Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_danish In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_danish Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_chinese_simplified In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_chinese_simplified Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_bulgarian In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_bulgarian Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_chinese_traditional_taiwan In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_chinese_traditional_taiwan Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_finnish In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_finnish Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2002-06-22 15:17:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_dutch In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_dutch Removed Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: Removed image sets for time being, chances are some things will change --- icon_aim.gif DELETED --- --- icon_edit.gif DELETED --- --- icon_email.gif DELETED --- --- icon_icq_add.gif DELETED --- --- icon_ip.gif DELETED --- --- icon_msnm.gif DELETED --- --- icon_pm.gif DELETED --- --- icon_profile.gif DELETED --- --- icon_quote.gif DELETED --- --- icon_search.gif DELETED --- --- icon_www.gif DELETED --- --- icon_yim.gif DELETED --- --- msg_newpost.gif DELETED --- --- post.gif DELETED --- --- reply-locked.gif DELETED --- --- reply.gif DELETED --- |