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-06-22 15:17:14
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/images/lang_arabic In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_arabic 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_albanian In directory usw-pr-cvs1:/tmp/cvs-serv14348/templates/subSilver/images/lang_albanian 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 11:48:14
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv3141/includes
Modified Files:
template.php
Log Message:
Template caching ( file based )
Index: template.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/template.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** template.php 2 Apr 2002 21:13:47 -0000 1.10
--- template.php 22 Jun 2002 11:48:10 -0000 1.11
***************
*** 1,5 ****
<?php
/***************************************************************************
! * template.php
* -------------------
* begin : Saturday, Feb 13, 2001
--- 1,5 ----
<?php
/***************************************************************************
! * template.inc
* -------------------
* begin : Saturday, Feb 13, 2001
***************
*** 29,33 ****
class Template {
! var $classname = "Template";
// variable that holds all the data we'll be substituting into
--- 29,33 ----
class Template {
! var $classname = 'Template';
// variable that holds all the data we'll be substituting into
***************
*** 44,48 ****
// Root template directory.
! var $root = "";
// this will hash handle names to the compiled code for that handle.
--- 44,48 ----
// Root template directory.
! var $root = '';
// this will hash handle names to the compiled code for that handle.
***************
*** 56,62 ****
*
*/
! function Template($root = ".")
{
$this->set_rootdir($root);
}
--- 56,65 ----
*
*/
! function Template($root = '.')
{
+ global $board_config, $db;
+
$this->set_rootdir($root);
+ $this->db = $db;
}
***************
*** 81,84 ****
--- 84,88 ----
$this->root = $dir;
+ $this->cachedir = $dir . '/cache/';
return true;
}
***************
*** 90,101 ****
function set_filenames($filename_array)
{
! if (!is_array($filename_array))
{
return false;
}
! reset($filename_array);
! while(list($handle, $filename) = each($filename_array))
{
$this->files[$handle] = $this->make_filename($filename);
}
--- 94,107 ----
function set_filenames($filename_array)
{
! if ( !is_array($filename_array) )
{
return false;
}
! $template_names = '';
! @reset($filename_array);
! while ( list($handle, $filename) = @each($filename_array) )
{
+ $this->filename[$handle] = $filename;
$this->files[$handle] = $this->make_filename($filename);
}
***************
*** 112,129 ****
function pparse($handle)
{
! if (!$this->loadfile($handle))
{
! die("Template->pparse(): Couldn't load template file for handle $handle");
! }
! // actually compile the template now.
! if (!isset($this->compiled_code[$handle]) || empty($this->compiled_code[$handle]))
{
// Actually compile the code now.
$this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]);
- }
! // Run the compiled code.
! eval($this->compiled_code[$handle]);
return true;
}
--- 118,155 ----
function pparse($handle)
{
! $cache_file = $this->cachedir . $this->filename[$handle] . '.php';
!
! if( @filemtime($cache_file) == @filemtime($this->files[$handle]) )
{
! $_str = '';
! include($cache_file);
! if ( $_str != '' )
! {
! echo $_str;
! }
! }
! else
{
+ if ( !$this->loadfile($handle) )
+ {
+ die("Template->pparse(): Couldn't load template file for handle $handle");
+ }
+
+ //
// Actually compile the code now.
+ //
$this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]);
! $fp = fopen($cache_file, 'w+');
! fwrite ($fp, '<?php' . "\n" . $this->compiled_code[$handle] . "\n?" . '>');
! fclose($fp);
!
! touch($cache_file, filemtime($this->files[$handle]));
! @chmod($cache_file, 0777);
!
! eval($this->compiled_code[$handle]);
! }
!
return true;
}
***************
*** 139,153 ****
function assign_var_from_handle($varname, $handle)
{
! if (!$this->loadfile($handle))
{
! die("Template->assign_var_from_handle(): Couldn't load template file for handle $handle");
}
! // Compile it, with the "no echo statements" option on.
! $_str = "";
! $code = $this->compile($this->uncompiled_code[$handle], true, '_str');
- // evaluate the variable assignment.
- eval($code);
// assign the value of the generated variable to the given varname.
$this->assign_var($varname, $_str);
--- 165,198 ----
function assign_var_from_handle($varname, $handle)
{
! $cache_file = $this->cachedir . $this->filename[$handle] . '.php';
!
! if( @filemtime($cache_file) == @filemtime($this->files[$handle]) )
{
! $_str = '';
! include($cache_file);
}
+ else
+ {
+ if ( !$this->loadfile($handle) )
+ {
+ die("Template->pparse(): Couldn't load template file for handle $handle");
+ }
+
+ $code = $this->compile($this->uncompiled_code[$handle], true, '_str');
! $fp = fopen($cache_file, 'w+');
! fwrite ($fp, '<?php' . "\n" . $code . "\n?" . '>');
! fclose($fp);
!
! touch($cache_file, filemtime($this->files[$handle]));
! @chmod($cache_file, 0777);
!
! // Compile It, With The "no Echo Statements" Option On.
! $_str = '';
! // evaluate the variable assignment.
! eval($code);
!
! }
// assign the value of the generated variable to the given varname.
$this->assign_var($varname, $_str);
***************
*** 249,273 ****
function loadfile($handle)
{
! // If the file for this handle is already loaded and compiled, do nothing.
! if (isset($this->uncompiled_code[$handle]) && !empty($this->uncompiled_code[$handle]))
{
! return true;
! }
! // If we don't have a file assigned to this handle, die.
! if (!isset($this->files[$handle]))
! {
! die("Template->loadfile(): No file specified for handle $handle");
! }
! $filename = $this->files[$handle];
! $str = implode("", @file($filename));
! if (empty($str))
! {
! die("Template->loadfile(): File $filename for handle $handle is empty");
! }
! $this->uncompiled_code[$handle] = $str;
return true;
--- 294,327 ----
function loadfile($handle)
{
! switch ( $board_config['template_cache'] )
{
! case 1:
! break;
! case 2:
! break;
! default:
! // If the file for this handle is already loaded and compiled, do nothing.
! if ( !empty($this->uncompiled_code[$handle]) )
! {
! return true;
! }
! // If we don't have a file assigned to this handle, die.
! if (!isset($this->files[$handle]))
! {
! die("Template->loadfile(): No file specified for handle $handle");
! }
! $filename = $this->files[$handle];
! $str = implode('', @file($filename));
! if (empty($str))
! {
! die("Template->loadfile(): File $filename for handle $handle is empty");
! }
! $this->uncompiled_code[$handle] = $str;
! break;
! }
return true;
***************
*** 312,316 ****
$block_nesting_level = 0;
$block_names = array();
! $block_names[0] = ".";
// Second: prepend echo ', append ' . "\n"; to each line.
--- 366,370 ----
$block_nesting_level = 0;
$block_names = array();
! $block_names[0] = '.';
// Second: prepend echo ', append ' . "\n"; to each line.
***************
*** 413,418 ****
// Bring it back into a single string of lines of code.
$code = implode("\n", $code_lines);
! return $code ;
!
}
--- 467,471 ----
// Bring it back into a single string of lines of code.
$code = implode("\n", $code_lines);
! return $code;
}
***************
*** 455,459 ****
{
// Get an array of the blocks involved.
! $blocks = explode(".", $blockname);
$blockcount = sizeof($blocks) - 1;
$varref = '$this->_tpldata';
--- 508,512 ----
{
// Get an array of the blocks involved.
! $blocks = explode('.', $blockname);
$blockcount = sizeof($blocks) - 1;
$varref = '$this->_tpldata';
***************
*** 476,478 ****
}
! ?>
--- 529,531 ----
}
! ?>
\ No newline at end of file
|
|
From: Paul S. O. <ps...@us...> - 2002-06-21 22:40:33
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv26264/db/schemas
Modified Files:
mysql_basic.sql mysql_schema.sql
Log Message:
Few more changes
Index: mysql_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_basic.sql,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** mysql_basic.sql 21 Jun 2002 20:12:06 -0000 1.19
--- mysql_basic.sql 21 Jun 2002 22:40:29 -0000 1.20
***************
*** 156,159 ****
--- 156,163 ----
+ # -- Topic icons
+ INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height) VALUES (0, '', 0, 0);
+
+
# -- Smilies
INSERT INTO phpbb_smilies (smilies_id, code, smile_url, emoticon) VALUES ( 1, ':D', 'icon_biggrin.gif', 'Very Happy');
Index: mysql_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_schema.sql,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** mysql_schema.sql 21 Jun 2002 20:12:08 -0000 1.23
--- mysql_schema.sql 21 Jun 2002 22:40:29 -0000 1.24
***************
*** 54,95 ****
# --------------------------------------------------------
#
- # Table structure for table 'phpbb_user_group'
- #
- CREATE TABLE phpbb_user_group (
- group_id mediumint(8) DEFAULT '0' NOT NULL,
- user_id mediumint(8) DEFAULT '0' NOT NULL,
- user_pending tinyint(1),
- KEY group_id (group_id),
- KEY user_id (user_id)
- );
-
-
- # --------------------------------------------------------
- #
- # Table structure for table 'phpbb_groups'
- #
- CREATE TABLE phpbb_groups (
- group_id mediumint(8) NOT NULL auto_increment,
- group_type tinyint(4) DEFAULT '1' NOT NULL,
- group_name varchar(40) NOT NULL,
- group_avatar varchar(100),
- group_avatar_type tinyint(4),
- group_description varchar(255) NOT NULL,
- PRIMARY KEY (group_id)
- );
-
-
- # --------------------------------------------------------
- #
- # Table structure for table 'phpbb_groups_moderator'
- #
- CREATE TABLE phpbb_groups_moderator (
- group_id mediumint(8) NOT NULL,
- user_id mediumint(8) NOT NULL
- );
-
-
- # --------------------------------------------------------
- #
# Table structure for table 'phpbb_banlist'
#
--- 54,57 ----
***************
*** 130,134 ****
# --------------------------------------------------------
#
! # Table structure for table 'phpbb_disallow'
#
CREATE TABLE phpbb_disallow (
--- 92,96 ----
# --------------------------------------------------------
#
! # Table structure for table 'phpbb_disallow' <- combine with banlist
#
CREATE TABLE phpbb_disallow (
***************
*** 187,190 ****
--- 149,178 ----
# --------------------------------------------------------
#
+ # Table structure for table 'phpbb_groups'
+ #
+ CREATE TABLE phpbb_groups (
+ group_id mediumint(8) NOT NULL auto_increment,
+ group_type tinyint(4) DEFAULT '1' NOT NULL,
+ group_name varchar(40) NOT NULL,
+ group_avatar varchar(100),
+ group_avatar_type tinyint(4),
+ group_colour varchar(6) DEFAULT '' NOT NULL,
+ group_description varchar(255) NOT NULL,
+ PRIMARY KEY (group_id)
+ );
+
+
+ # --------------------------------------------------------
+ #
+ # Table structure for table 'phpbb_groups_moderator'
+ #
+ CREATE TABLE phpbb_groups_moderator (
+ group_id mediumint(8) NOT NULL,
+ user_id mediumint(8) NOT NULL
+ );
+
+
+ # --------------------------------------------------------
+ #
# Table structure for table 'phpbb_icons'
#
***************
*** 441,445 ****
topic_poster mediumint(8) DEFAULT '0' NOT NULL,
topic_time int(11) DEFAULT '0' NOT NULL,
! topic_icon tinyint(4) UNSIGNED,
topic_views mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
topic_replies mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
--- 429,433 ----
topic_poster mediumint(8) DEFAULT '0' NOT NULL,
topic_time int(11) DEFAULT '0' NOT NULL,
! topic_icon tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
topic_views mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
topic_replies mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
***************
*** 476,479 ****
--- 464,479 ----
+ # --------------------------------------------------------
+ #
+ # Table structure for table 'phpbb_user_group'
+ #
+ CREATE TABLE phpbb_user_group (
+ group_id mediumint(8) DEFAULT '0' NOT NULL,
+ user_id mediumint(8) DEFAULT '0' NOT NULL,
+ user_pending tinyint(1),
+ KEY group_id (group_id),
+ KEY user_id (user_id)
+ );
+
# --------------------------------------------------------
***************
*** 491,495 ****
user_lastvisit int(11) DEFAULT '0' NOT NULL,
user_regdate int(11) DEFAULT '0' NOT NULL,
! user_level tinyint(4) DEFAULT '0',
user_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
user_lang varchar(50),
--- 491,496 ----
user_lastvisit int(11) DEFAULT '0' NOT NULL,
user_regdate int(11) DEFAULT '0' NOT NULL,
! user_level tinyint(4) DEFAULT '0',
! user_colourise varchar(6) DEFAULT '' NOT NULL,
user_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
user_lang varchar(50),
|
|
From: Paul S. O. <ps...@us...> - 2002-06-21 20:12:16
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv8411/db/schemas
Modified Files:
mysql_basic.sql mysql_schema.sql
Log Message:
A few suggested or preliminary changes ... these aren't fixed and again I suggest no one install (or even manually update) this version at present.
Index: mysql_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_basic.sql,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** mysql_basic.sql 30 Apr 2002 17:56:50 -0000 1.18
--- mysql_basic.sql 21 Jun 2002 20:12:06 -0000 1.19
***************
*** 7,10 ****
--- 7,11 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('config_id','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable','0');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable_msg','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename','yourdomain.com');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc','A _little_ text to describe your forum');
***************
*** 20,36 ****
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_namechange','0');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_theme_create','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_local','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_remote','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_upload','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('override_user_style','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('posts_per_page','15');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page','50');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('hot_threshold','25');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_poll_options','10');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_chars','255');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_inbox_privmsgs','50');
- INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sentbox_privmsgs','25');
- INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_savebox_privmsgs','50');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_sig','Thanks, The Management');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email','you...@yo...');
--- 21,40 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_namechange','0');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_topic_notify','1');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_forum_notify','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_local','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_remote','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_upload','0');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_style','1');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_dateformat','D M d, Y g:i a');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_timezone','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('override_user_style','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('posts_per_page','15');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page','50');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('hot_threshold','25');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_chars', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_chars','255');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_poll_options','10');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_inbox_privmsgs','50');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_sig','Thanks, The Management');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email','you...@yo...');
***************
*** 39,42 ****
--- 43,47 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_username','');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_password','');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_enable','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('require_activation','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('flood_interval','15');
***************
*** 48,57 ****
INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_gallery_path','images/avatars/gallery');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_path','images/smiles');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_style','1');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_dateformat','D M d, Y g:i a');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_timezone','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('prune_enable','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('privmsg_disable','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('gzip_compress','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', '');
--- 53,62 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_gallery_path','images/avatars/gallery');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_path','images/smiles');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('icons_path','images/icons');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('prune_enable','1');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('prune_logs_enable','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('privmsg_disable','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('gzip_compress','0');
+ INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_enable','1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', '');
***************
*** 61,68 ****
INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_port', '80');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('script_path', '/phpBB2/');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('newest_user_id', 2);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('newest_username', 'Admin');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('num_users', 1);
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '.1.0 [20020430]');
--- 66,121 ----
INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_port', '80');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('script_path', '/phpBB2/');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('newest_user_id', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('newest_username', 'Admin');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('num_users', '1');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('num_posts', '1');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('num_topics', '1');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('limit_load', '1.0');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('active_sessions', '0');
! INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '2.1.0 [20020430]');
!
!
! # -- auth options
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_list');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_read');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_post');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_reply');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_edit');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_delete');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_poll');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_vote');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_announce');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_sticky');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_attach');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_html');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_bbcode');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_smilies');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_img');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_flash');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_sigs');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_download');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_search');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_email');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_print');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_ignoreflood');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('forum_ignorequeue');
!
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('mod_edit');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('mod_delete');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('mod_move');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('mod_lock');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('mod_split');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('mod_merge');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('mod_approve');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('mod_ban');
!
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('admin_config');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('admin_user');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('admin_group');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('admin_forum');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('admin_posts');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('admin_ban');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('admin_email');
! INSERT INTO phpbb_auth_options (auth_option) VALUES ('admin_backup');
***************
*** 76,83 ****
# -- Users
! INSERT INTO phpbb_users (user_id, username, user_level, user_regdate, user_password, user_email, user_icq, user_website, user_occ, user_from, user_interests, user_sig, user_viewemail, user_style, user_aim, user_yim, user_msnm, user_posts, user_attachsig, user_allowsmile, user_allowhtml, user_allowbbcode, user_allow_pm, user_notify_pm, user_allow_viewonline, user_rank, user_avatar, user_lang, user_timezone, user_dateformat, user_actkey, user_newpasswd, user_notify, user_active) VALUES ( -1, 'Anonymous', 0, 0, '', '', '', '', '', '', '', '', 0, NULL, '', '', '', 0, 0, 1, 0, 1, 0, 1, 1, NULL, '', '', '', '', '', '', 0, 0);
# -- username: admin password: admin (change this or remove it once everything is working!)
! INSERT INTO phpbb_users (user_id, username, user_level, user_regdate, user_password, user_email, user_icq, user_website, user_occ, user_from, user_interests, user_sig, user_viewemail, user_style, user_aim, user_yim, user_msnm, user_posts, user_attachsig, user_allowsmile, user_allowhtml, user_allowbbcode, user_allow_pm, user_notify_pm, user_popup_pm, user_allow_viewonline, user_rank, user_avatar, user_lang, user_timezone, user_dateformat, user_actkey, user_newpasswd, user_notify, user_active) VALUES ( 2, 'Admin', 1, 0, '21232f297a57a5a743894a0e4a801fc3', 'ad...@yo...', '', '', '', '', '', '', 1, 1, '', '', '', 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, '', 'english', 0, 'd M Y h:i a', '', '', 0, 1);
--- 129,136 ----
# -- Users
! INSERT INTO phpbb_users (user_id, username, user_level, user_regdate, user_password, user_email, user_icq, user_website, user_occ, user_from, user_interests, user_sig, user_viewemail, user_style, user_aim, user_yim, user_msnm, user_posts, user_attachsig, user_allowsmile, user_allowhtml, user_allowbbcode, user_allow_pm, user_notify_pm, user_allow_viewonline, user_rank, user_avatar, user_lang, user_timezone, user_dateformat, user_actkey, user_newpasswd, user_notify, user_active) VALUES ( 0, 'Anonymous', 0, 0, '', '', '', '', '', '', '', '', 0, NULL, '', '', '', 0, 0, 1, 0, 1, 0, 1, 1, NULL, '', '', '', '', '', '', 0, 0);
# -- username: admin password: admin (change this or remove it once everything is working!)
! INSERT INTO phpbb_users (user_id, username, user_level, user_regdate, user_password, user_email, user_icq, user_website, user_occ, user_from, user_interests, user_sig, user_viewemail, user_style, user_aim, user_yim, user_msnm, user_posts, user_attachsig, user_allowsmile, user_allowhtml, user_allowbbcode, user_allow_pm, user_notify_pm, user_popup_pm, user_allow_viewonline, user_rank, user_avatar, user_lang, user_timezone, user_dateformat, user_actkey, user_newpasswd, user_notify, user_active) VALUES ( 1, 'Admin', 1, 0, '21232f297a57a5a743894a0e4a801fc3', 'ad...@yo...', '', '', '', '', '', '', 1, 1, '', '', '', 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, '', 'english', 0, 'd M Y h:i a', '', '', 0, 1);
***************
*** 87,97 ****
# -- Groups
! INSERT INTO phpbb_groups (group_id, group_name, group_description, group_single_user) VALUES (1, 'Anonymous', 'Personal User', 1);
! INSERT INTO phpbb_groups (group_id, group_name, group_description, group_single_user) VALUES (2, 'Admin', 'Personal User', 1);
# -- User -> Group
! INSERT INTO phpbb_user_group (group_id, user_id, user_pending) VALUES (1, -1, 0);
! INSERT INTO phpbb_user_group (group_id, user_id, user_pending) VALUES (2, 2, 0);
--- 140,148 ----
# -- Groups
! INSERT INTO phpbb_groups (group_id, group_name, group_type) VALUES (1, 'REGISTERED', 0);
# -- User -> Group
! INSERT INTO phpbb_user_group (group_id, user_id, user_pending) VALUES (1, 1, 0);
***************
*** 103,112 ****
INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, post_username, poster_ip) VALUES (1, 1, 1, 2, 972086460, NULL, '7F000001');
INSERT INTO phpbb_posts_text (post_id, post_subject, post_text) VALUES (1, NULL, 'This is an example post in your phpBB 2 installation. You may delete this post, this topic and even this forum if you like since everything seems to be working!');
-
-
- # -- Themes
- INSERT INTO phpbb_themes (themes_id, template_name, style_name, head_stylesheet, body_background, body_bgcolor, body_text, body_link, body_vlink, body_alink, body_hlink, tr_color1, tr_color2, tr_color3, tr_class1, tr_class2, tr_class3, th_color1, th_color2, th_color3, th_class1, th_class2, th_class3, td_color1, td_color2, td_color3, td_class1, td_class2, td_class3, fontface1, fontface2, fontface3, fontsize1, fontsize2, fontsize3, fontcolor1, fontcolor2, fontcolor3, span_class1, span_class2, span_class3) VALUES (1, 'subSilver', 'subSilver', 'subSilver.css', '', 'E5E5E5', '000000', '006699', '5493B4', '', 'DD6900', 'EFEFEF', 'DEE3E7', 'D1D7DC', '', '', '', '98AAB1', '006699', 'FFFFFF', 'cellpic1.gif', 'cellpic3.gif', 'cellpic2.jpg', 'FAFAFA', 'FFFFFF', '', 'row1', 'row2', '', 'Verdana, Arial, Helvetica, sans-serif', 'Trebuchet MS', 'Courier, \'Courier New\', sans-serif', 10, 11, 12, '444444', '006600', 'FFA34F', '', '', '');
-
- INSERT INTO phpbb_themes_name (themes_id, tr_color1_name, tr_color2_name, tr_color3_name, tr_class1_name, tr_class2_name, tr_class3_name, th_color1_name, th_color2_name, th_color3_name, th_class1_name, th_class2_name, th_class3_name, td_color1_name, td_color2_name, td_color3_name, td_class1_name, td_class2_name, td_class3_name, fontface1_name, fontface2_name, fontface3_name, fontsize1_name, fontsize2_name, fontsize3_name, fontcolor1_name, fontcolor2_name, fontcolor3_name, span_class1_name, span_class2_name, span_class3_name) VALUES (1, 'The lightest row colour', 'The medium row color', 'The darkest row colour', '', '', '', 'Border round the whole page', 'Outer table border', 'Inner table border', 'Silver gradient picture', 'Blue gradient picture', 'Fade-out gradient on index', 'Background for quote boxes', 'All white areas', '', 'Background for topic posts', '2nd background for topic posts', '', 'Main fonts', 'Additional topic title font', 'Form fonts', 'Smallest font size', 'Medium font size', 'Normal font size (post body etc)', 'Quote & copyright text', 'Code text colour', 'Main table header text colour', '', '', '');
--- 154,157 ----
Index: mysql_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_schema.sql,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** mysql_schema.sql 8 Jun 2002 20:31:56 -0000 1.22
--- mysql_schema.sql 21 Jun 2002 20:12:08 -0000 1.23
***************
*** 5,8 ****
--- 5,9 ----
#
+ # --------------------------------------------------------
#
# Table structure for table `phpbb_auth_groups`
***************
*** 15,24 ****
auth_allow_deny tinyint(4) NOT NULL default '1'
)
! # --------------------------------------------------------
#
# Table structure for table `phpbb_auth_options`
#
- DROP TABLE IF EXISTS phpbb_auth_options;
CREATE TABLE phpbb_auth_options (
auth_option_id tinyint(4) NOT NULL auto_increment,
--- 16,24 ----
auth_allow_deny tinyint(4) NOT NULL default '1'
)
!
#
# Table structure for table `phpbb_auth_options`
#
CREATE TABLE phpbb_auth_options (
auth_option_id tinyint(4) NOT NULL auto_increment,
***************
*** 26,35 ****
PRIMARY KEY (auth_option_id,auth_option)
)
- # --------------------------------------------------------
#
# Table structure for table `phpbb_auth_prefetch`
#
- DROP TABLE IF EXISTS phpbb_auth_prefetch;
CREATE TABLE phpbb_auth_prefetch (
user_id mediumint(8) unsigned NOT NULL default '0',
--- 26,35 ----
PRIMARY KEY (auth_option_id,auth_option)
)
+
+ # --------------------------------------------------------
#
# Table structure for table `phpbb_auth_prefetch`
#
CREATE TABLE phpbb_auth_prefetch (
user_id mediumint(8) unsigned NOT NULL default '0',
***************
*** 38,47 ****
auth_allow_deny tinyint(4) NOT NULL default '1')
)
- # --------------------------------------------------------
#
# Table structure for table `phpbb_auth_users`
#
- DROP TABLE IF EXISTS phpbb_auth_users;
CREATE TABLE phpbb_auth_users (
user_id mediumint(8) unsigned NOT NULL default '0',
--- 38,47 ----
auth_allow_deny tinyint(4) NOT NULL default '1')
)
+
+ # --------------------------------------------------------
#
# Table structure for table `phpbb_auth_users`
#
CREATE TABLE phpbb_auth_users (
user_id mediumint(8) unsigned NOT NULL default '0',
***************
*** 51,77 ****
)
- #
- # Table structure for table 'phpbb_auth_access'
- #
- CREATE TABLE phpbb_auth_access (
- group_id mediumint(8) DEFAULT '0' NOT NULL,
- forum_id smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
- auth_view tinyint(1) DEFAULT '0' NOT NULL,
- auth_read tinyint(1) DEFAULT '0' NOT NULL,
- auth_post tinyint(1) DEFAULT '0' NOT NULL,
- auth_reply tinyint(1) DEFAULT '0' NOT NULL,
- auth_edit tinyint(1) DEFAULT '0' NOT NULL,
- auth_delete tinyint(1) DEFAULT '0' NOT NULL,
- auth_sticky tinyint(1) DEFAULT '0' NOT NULL,
- auth_announce tinyint(1) DEFAULT '0' NOT NULL,
- auth_vote tinyint(1) DEFAULT '0' NOT NULL,
- auth_pollcreate tinyint(1) DEFAULT '0' NOT NULL,
- auth_attachments tinyint(1) DEFAULT '0' NOT NULL,
- auth_mod tinyint(1) DEFAULT '0' NOT NULL,
- KEY group_id (group_id),
- KEY forum_id (forum_id)
- );
-
#
# Table structure for table 'phpbb_user_group'
--- 51,56 ----
)
+ # --------------------------------------------------------
#
# Table structure for table 'phpbb_user_group'
***************
*** 85,88 ****
--- 64,69 ----
);
+
+ # --------------------------------------------------------
#
# Table structure for table 'phpbb_groups'
***************
*** 99,102 ****
--- 80,84 ----
+ # --------------------------------------------------------
#
# Table structure for table 'phpbb_groups_moderator'
***************
*** 113,120 ****
#
CREATE TABLE phpbb_banlist (
! ban_id mediumint(8) UNSIGNED NOT NULL auto_increment,
! ban_userid mediumint(8) NOT NULL,
! ban_ip char(40) NOT NULL,
! ban_email char(50),
PRIMARY KEY (ban_id),
KEY ban_ip_user_id (ban_ip, ban_userid)
--- 95,102 ----
#
CREATE TABLE phpbb_banlist (
! ban_id mediumint(8) UNSIGNED NOT NULL auto_increment,
! ban_userid mediumint(8) NOT NULL,
! ban_ip char(40) NOT NULL,
! ban_email char(50),
PRIMARY KEY (ban_id),
KEY ban_ip_user_id (ban_ip, ban_userid)
***************
*** 124,128 ****
# --------------------------------------------------------
#
! # Table structure for table 'phpbb_categories'
#
CREATE TABLE phpbb_categories (
--- 106,110 ----
# --------------------------------------------------------
#
! # Table structure for table 'phpbb_categories' <- DUMP THIS?
#
CREATE TABLE phpbb_categories (
***************
*** 159,176 ****
# --------------------------------------------------------
#
- # Table structure for table 'phpbb_forum_prune'
- #
- CREATE TABLE phpbb_forum_prune (
- prune_id mediumint(8) UNSIGNED NOT NULL auto_increment,
- forum_id smallint(5) UNSIGNED NOT NULL,
- prune_days tinyint(4) UNSIGNED NOT NULL,
- prune_freq tinyint(4) UNSIGNED NOT NULL,
- PRIMARY KEY(prune_id),
- KEY forum_id (forum_id)
- );
-
-
- # --------------------------------------------------------
- #
# Table structure for table 'phpbb_forums'
#
--- 141,144 ----
***************
*** 178,188 ****
forum_id smallint(5) UNSIGNED NOT NULL,
parent_id smallint(5) UNSIGNED NOT NULL,
! cat_id mediumint(8) UNSIGNED NOT NULL,
! forum_name varchar(150),
forum_desc text,
forum_status tinyint(4) DEFAULT '0' NOT NULL,
- forum_order mediumint(8) UNSIGNED DEFAULT '1' NOT NULL,
forum_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
forum_topics mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
--- 146,158 ----
forum_id smallint(5) UNSIGNED NOT NULL,
parent_id smallint(5) UNSIGNED NOT NULL,
+ forum_order smallint(5) UNSIGNED DEFAULT '1' NOT NULL,
! left_id smallint(5) UNSIGNED NOT NULL,
! right_id smallint(5) UNSIGNED NOT NULL,
! forum_name varchar(150) NOT NULL,
forum_desc text,
+ forum_image varchar(50),
forum_status tinyint(4) DEFAULT '0' NOT NULL,
forum_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
forum_topics mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
***************
*** 191,212 ****
prune_next int(11) UNSIGNED,
prune_days tinyint(4) UNSIGNED NOT NULL,
! prune_freq tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
!
! prune_enable tinyint(1) DEFAULT '0' NOT NULL,
! auth_view tinyint(2) DEFAULT '0' NOT NULL,
! auth_read tinyint(2) DEFAULT '0' NOT NULL,
! auth_post tinyint(2) DEFAULT '0' NOT NULL,
! auth_reply tinyint(2) DEFAULT '0' NOT NULL,
! auth_edit tinyint(2) DEFAULT '0' NOT NULL,
! auth_delete tinyint(2) DEFAULT '0' NOT NULL,
! auth_sticky tinyint(2) DEFAULT '0' NOT NULL,
! auth_announce tinyint(2) DEFAULT '0' NOT NULL,
! auth_vote tinyint(2) DEFAULT '0' NOT NULL,
! auth_pollcreate tinyint(2) DEFAULT '0' NOT NULL,
! auth_attachments tinyint(2) DEFAULT '0' NOT NULL,
!
! PRIMARY KEY (forum_id),
! KEY forums_order (forum_order),
! KEY cat_id (cat_id),
KEY forum_last_post_id (forum_last_post_id)
);
--- 161,170 ----
prune_next int(11) UNSIGNED,
prune_days tinyint(4) UNSIGNED NOT NULL,
! prune_freq tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
! default_style tinyint(4) UNSIGNED,
! default_group mediumint(8) UNSIGNED,
! default_user mediumint(8) UNSIGNED,
! PRIMARY KEY (forum_id),
! KEY forums_order (forum_order),
KEY forum_last_post_id (forum_last_post_id)
);
***************
*** 229,232 ****
--- 187,248 ----
# --------------------------------------------------------
#
+ # Table structure for table 'phpbb_icons'
+ #
+ CREATE TABLE phpbb_icons (
+ icons_id tinyint(4) UNSIGNED NOT NULL auto_increment,
+ icons_url char(50),
+ icons_width tinyint(4) UNSIGNED NOT NULL,
+ icons_height tinyint(4) UNSIGNED NOT NULL,
+ PRIMARY KEY (icons_id)
+ );
+
+
+ # --------------------------------------------------------
+ #
+ # Table structure for table 'phpbb_log_moderator'
+ #
+ CREATE TABLE phpbb_log_moderator (
+ log_id mediumint(5) UNSIGNED NOT NULL DEFAULT '0',
+ user_id mediumint(8) NOT NULL DEFAULT '0',
+ forum_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
+ log_ip varchar(40) NOT NULL,
+ log_time int(11) NOT NULL,
+ log_operation varchar(255),
+ PRIMARY KEY (log_id),
+ KEY forum_id (forum_id),
+ KEY user_id (user_id)
+ );
+
+
+ # --------------------------------------------------------
+ #
+ # Table structure for table 'phpbb_vote_results'
+ #
+ CREATE TABLE phpbb_poll_results (
+ poll_option_id tinyint(4) UNSIGNED NOT NULL DEFAULT '0',
+ topic_id mediumint(8) UNSIGNED NOT NULL,
+ poll_option_text varchar(255) NOT NULL,
+ KEY poll_option_id (poll_option_id),
+ KEY topic_id (topic_id)
+ );
+
+
+ # --------------------------------------------------------
+ #
+ # Table structure for table 'phpbb_vote_voters'
+ #
+ CREATE TABLE phpbb_poll_voters (
+ vote_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
+ poll_option_id tinyint(4) UNSIGNED NOT NULL DEFAULT '0',
+ vote_user_id mediumint(8) NOT NULL DEFAULT '0',
+ vote_user_ip char(40) NOT NULL,
+ KEY vote_id (vote_id),
+ KEY vote_user_id (vote_user_id),
+ KEY vote_user_ip (vote_user_ip)
+ );
+
+
+ # --------------------------------------------------------
+ #
# Table structure for table 'phpbb_posts'
#
***************
*** 236,248 ****
forum_id smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
poster_id mediumint(8) DEFAULT '0' NOT NULL,
- post_time int(11) DEFAULT '0' NOT NULL,
poster_ip char(40) NOT NULL,
! post_username varchar(25),
enable_bbcode tinyint(1) DEFAULT '1' NOT NULL,
enable_html tinyint(1) DEFAULT '0' NOT NULL,
enable_smilies tinyint(1) DEFAULT '1' NOT NULL,
enable_sig tinyint(1) DEFAULT '1' NOT NULL,
! post_edit_time int(11),
! post_edit_count smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
PRIMARY KEY (post_id),
KEY forum_id (forum_id),
--- 252,266 ----
forum_id smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
poster_id mediumint(8) DEFAULT '0' NOT NULL,
poster_ip char(40) NOT NULL,
! post_time int(11) DEFAULT '0' NOT NULL,
! post_approved tinyint(1) DEFAULT '1' NOT NULL,
! post_username char(30),
enable_bbcode tinyint(1) DEFAULT '1' NOT NULL,
enable_html tinyint(1) DEFAULT '0' NOT NULL,
enable_smilies tinyint(1) DEFAULT '1' NOT NULL,
+ enable_magic_url tinyint(1) DEFAULT '1' NOT NULL,
enable_sig tinyint(1) DEFAULT '1' NOT NULL,
! post_edit_time int(11),
! post_edit_count smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
PRIMARY KEY (post_id),
KEY forum_id (forum_id),
***************
*** 306,313 ****
CREATE TABLE phpbb_ranks (
rank_id smallint(5) UNSIGNED NOT NULL auto_increment,
! rank_title char(50) NOT NULL,
rank_min mediumint(8) DEFAULT '0' NOT NULL,
rank_special tinyint(1) DEFAULT '0',
! rank_image char(100),
PRIMARY KEY (rank_id)
);
--- 324,332 ----
CREATE TABLE phpbb_ranks (
rank_id smallint(5) UNSIGNED NOT NULL auto_increment,
! rank_title varchar(50) NOT NULL,
rank_min mediumint(8) DEFAULT '0' NOT NULL,
rank_special tinyint(1) DEFAULT '0',
! rank_image varchar(100),
! rank_colour varchar(6),
PRIMARY KEY (rank_id)
);
***************
*** 320,324 ****
CREATE TABLE phpbb_search_results (
search_id int(11) UNSIGNED NOT NULL default '0',
! session_id char(32) NOT NULL default '',
search_array text NOT NULL,
PRIMARY KEY (search_id),
--- 339,343 ----
CREATE TABLE phpbb_search_results (
search_id int(11) UNSIGNED NOT NULL default '0',
! session_id varchar(32) NOT NULL default '',
search_array text NOT NULL,
PRIMARY KEY (search_id),
***************
*** 332,336 ****
#
CREATE TABLE phpbb_search_wordlist (
! word_text char(25) binary NOT NULL default '',
word_id mediumint(8) UNSIGNED NOT NULL auto_increment,
word_common tinyint(1) unsigned NOT NULL default '0',
--- 351,355 ----
#
CREATE TABLE phpbb_search_wordlist (
! word_text varchar(25) binary NOT NULL default '',
word_id mediumint(8) UNSIGNED NOT NULL auto_increment,
word_common tinyint(1) unsigned NOT NULL default '0',
***************
*** 339,342 ****
--- 358,362 ----
);
+
# --------------------------------------------------------
#
***************
*** 356,366 ****
#
CREATE TABLE phpbb_sessions (
! session_id char(32) DEFAULT '' NOT NULL,
session_user_id mediumint(8) DEFAULT '0' NOT NULL,
session_start int(11) DEFAULT '0' NOT NULL,
session_time int(11) DEFAULT '0' NOT NULL,
! session_ip char(40) DEFAULT '0' NOT NULL,
! session_browser char(100) DEFAULT '' NOT NULL,
! session_page char(50) DEFAULT '0' NOT NULL,
PRIMARY KEY (session_id),
KEY session_user_id (session_user_id),
--- 376,386 ----
#
CREATE TABLE phpbb_sessions (
! session_id varchar(32) DEFAULT '' NOT NULL,
session_user_id mediumint(8) DEFAULT '0' NOT NULL,
session_start int(11) DEFAULT '0' NOT NULL,
session_time int(11) DEFAULT '0' NOT NULL,
! session_ip varchar(40) DEFAULT '0' NOT NULL,
! session_browser varchar(100) DEFAULT '' NULL,
! session_page varchar(50) DEFAULT '0' NOT NULL,
PRIMARY KEY (session_id),
KEY session_user_id (session_user_id),
***************
*** 369,377 ****
CREATE TABLE phpbb_smilies (
smilies_id tinyint(4) UNSIGNED NOT NULL auto_increment,
! code char(10),
! smile_url char(50),
! emoticon char(50),
PRIMARY KEY (smilies_id)
);
--- 389,403 ----
+ # --------------------------------------------------------
+ #
+ # Table structure for table 'phpbb_smilies'
+ #
CREATE TABLE phpbb_smilies (
smilies_id tinyint(4) UNSIGNED NOT NULL auto_increment,
! code char(10),
! smile_url char(50),
! smile_width tinyint(4) UNSIGNED NOT NULL,
! smile_height tinyint(4) UNSIGNED NOT NULL,
! emoticon char(50),
PRIMARY KEY (smilies_id)
);
***************
*** 380,430 ****
# --------------------------------------------------------
#
! # Table structure for table 'phpbb_themes'
#
! CREATE TABLE phpbb_themes (
! themes_id mediumint(8) UNSIGNED NOT NULL auto_increment,
! template_name char(30) NOT NULL default '',
! style_name char(30) NOT NULL default '',
! head_stylesheet char(100) default NULL,
! body_background char(100) default NULL,
! body_bgcolor char(6) default NULL,
! body_text char(6) default NULL,
! body_link char(6) default NULL,
! body_vlink char(6) default NULL,
! body_alink char(6) default NULL,
! body_hlink char(6) default NULL,
! tr_color1 char(6) default NULL,
! tr_color2 char(6) default NULL,
! tr_color3 char(6) default NULL,
! tr_class1 char(25) default NULL,
! tr_class2 char(25) default NULL,
! tr_class3 char(25) default NULL,
! th_color1 char(6) default NULL,
! th_color2 char(6) default NULL,
! th_color3 char(6) default NULL,
! th_class1 char(25) default NULL,
! th_class2 char(25) default NULL,
! th_class3 char(25) default NULL,
! td_color1 char(6) default NULL,
! td_color2 char(6) default NULL,
! td_color3 char(6) default NULL,
! td_class1 char(25) default NULL,
! td_class2 char(25) default NULL,
! td_class3 char(25) default NULL,
! fontface1 char(50) default NULL,
! fontface2 char(50) default NULL,
! fontface3 char(50) default NULL,
! fontsize1 tinyint(4) default NULL,
! fontsize2 tinyint(4) default NULL,
! fontsize3 tinyint(4) default NULL,
! fontcolor1 char(6) default NULL,
! fontcolor2 char(6) default NULL,
! fontcolor3 char(6) default NULL,
! span_class1 char(25) default NULL,
! span_class2 char(25) default NULL,
! span_class3 char(25) default NULL,
! img_size_poll smallint(5) UNSIGNED,
! img_size_privmsg smallint(5) UNSIGNED,
! PRIMARY KEY (themes_id)
);
--- 406,419 ----
# --------------------------------------------------------
#
! # Table structure for table 'phpbb_styles'
#
! CREATE TABLE phpbb_styles (
! style_id tinyint(4) UNSIGNED NOT NULL auto_increment,
! theme_id tinyint(4) UNSIGNED NOT NULL,
! template_name char(50) NOT NULL,
! style_name char(30) NOT NULL,
! style_default tinyint(1) DEFAULT '1' NOT NULL,
! PRIMARY KEY (style_id),
! KEY (theme_id)
);
***************
*** 432,470 ****
# --------------------------------------------------------
#
! # Table structure for table 'phpbb_themes_name'
! #
! CREATE TABLE phpbb_themes_name (
! themes_id smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
! tr_color1_name char(50),
! tr_color2_name char(50),
! tr_color3_name char(50),
! tr_class1_name char(50),
! tr_class2_name char(50),
! tr_class3_name char(50),
! th_color1_name char(50),
! th_color2_name char(50),
! th_color3_name char(50),
! th_class1_name char(50),
! th_class2_name char(50),
! th_class3_name char(50),
! td_color1_name char(50),
! td_color2_name char(50),
! td_color3_name char(50),
! td_class1_name char(50),
! td_class2_name char(50),
! td_class3_name char(50),
! fontface1_name char(50),
! fontface2_name char(50),
! fontface3_name char(50),
! fontsize1_name char(50),
! fontsize2_name char(50),
! fontsize3_name char(50),
! fontcolor1_name char(50),
! fontcolor2_name char(50),
! fontcolor3_name char(50),
! span_class1_name char(50),
! span_class2_name char(50),
! span_class3_name char(50),
! PRIMARY KEY (themes_id)
);
--- 421,431 ----
# --------------------------------------------------------
#
! # Table structure for table 'phpbb_styles_css'
! #
! CREATE TABLE phpbb_styles_css (
! theme_id mediumint(8) UNSIGNED NOT NULL auto_increment,
! css_data text NOT NULL,
! css_extra_data text NOT NULL,
! KEY (theme_id)
);
***************
*** 477,496 ****
topic_id mediumint(8) UNSIGNED NOT NULL auto_increment,
forum_id smallint(8) UNSIGNED DEFAULT '0' NOT NULL,
! topic_title char(60) NOT NULL,
topic_poster mediumint(8) DEFAULT '0' NOT NULL,
topic_time int(11) DEFAULT '0' NOT NULL,
topic_views mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
topic_replies mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
- topic_approved tinyint(1) DEFAULT '1' NOT NULL,
topic_status tinyint(3) DEFAULT '0' NOT NULL,
- topic_vote tinyint(1) DEFAULT '0' NOT NULL,
topic_type tinyint(3) DEFAULT '0' NOT NULL,
! increment_post_count tinyint(1) DEFAULT '1' NOT NULL,
! topic_first_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
! topic_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
! topic_moved_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
PRIMARY KEY (topic_id),
! KEY forum_id (forum_id),
! KEY topic_moved_id (topic_moved_id),
KEY topic_status (topic_status),
KEY topic_type (topic_type)
--- 438,460 ----
topic_id mediumint(8) UNSIGNED NOT NULL auto_increment,
forum_id smallint(8) UNSIGNED DEFAULT '0' NOT NULL,
! topic_title varchar(60) NOT NULL,
topic_poster mediumint(8) DEFAULT '0' NOT NULL,
topic_time int(11) DEFAULT '0' NOT NULL,
+ topic_icon tinyint(4) UNSIGNED,
topic_views mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
topic_replies mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
topic_status tinyint(3) DEFAULT '0' NOT NULL,
topic_type tinyint(3) DEFAULT '0' NOT NULL,
! topic_first_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
! topic_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
! topic_moved_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
! post_count_inc tinyint(1) DEFAULT '1' NOT NULL,
! poll_title varchar(255) NOT NULL,
! poll_start int(11) NOT NULL DEFAULT '0',
! poll_length int(11) NOT NULL DEFAULT '0',
! poll_last_vote int(11),
PRIMARY KEY (topic_id),
! KEY forum_id (forum_id),
! KEY topic_moved_id (topic_moved_id),
KEY topic_status (topic_status),
KEY topic_type (topic_type)
***************
*** 520,525 ****
user_id mediumint(8) NOT NULL auto_increment,
user_active tinyint(1) DEFAULT '1',
! username char(30) NOT NULL,
! user_password char(32) NOT NULL,
user_session_time int(11) DEFAULT '0' NOT NULL,
user_session_page smallint(5) DEFAULT '0' NOT NULL,
--- 484,490 ----
user_id mediumint(8) NOT NULL auto_increment,
user_active tinyint(1) DEFAULT '1',
! username varchar(30) NOT NULL,
! user_password varchar(32) NOT NULL,
! user_email varchar(60),
user_session_time int(11) DEFAULT '0' NOT NULL,
user_session_page smallint(5) DEFAULT '0' NOT NULL,
***************
*** 528,540 ****
user_level tinyint(4) DEFAULT '0',
user_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
user_timezone decimal(4,2) DEFAULT '0' NOT NULL,
! user_style tinyint(4),
! user_lang char(50),
! user_dateformat char(15) DEFAULT 'd M Y H:i' NOT NULL,
user_new_privmsg smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
user_unread_privmsg smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
user_last_privmsg int(11) DEFAULT '0' NOT NULL,
user_emailtime int(11),
! user_viewemail tinyint(1),
user_attachsig tinyint(1),
user_allowhtml tinyint(1) DEFAULT '1',
--- 493,508 ----
user_level tinyint(4) DEFAULT '0',
user_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
+ user_lang varchar(50),
user_timezone decimal(4,2) DEFAULT '0' NOT NULL,
! user_dateformat varchar(15) DEFAULT 'd M Y H:i' NOT NULL,
! user_style tinyint(4),
user_new_privmsg smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
user_unread_privmsg smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
user_last_privmsg int(11) DEFAULT '0' NOT NULL,
user_emailtime int(11),
! user_viewemail tinyint(1) DEFAULT '1' NOT NULL,
! user_viewsigs tinyint(1) DEFAULT '1' NOT NULL,
! user_viewavatars tinyint(1) DEFAULT '1' NOT NULL,
! user_viewimg tinyint(1) DEFAULT '1' NOT NULL,
user_attachsig tinyint(1),
user_allowhtml tinyint(1) DEFAULT '1',
***************
*** 544,547 ****
--- 512,516 ----
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
user_allow_viewonline tinyint(1) DEFAULT '1' NOT NULL,
+ user_allow_email tinyint(1) DEFAULT '1' NOT NULL,
user_notify tinyint(1) DEFAULT '1' NOT NULL,
user_notify_pm tinyint(1) DEFAULT '1' NOT NULL,
***************
*** 550,613 ****
user_avatar char(100),
user_avatar_type tinyint(4) DEFAULT '0' NOT NULL,
! user_email char(60),
user_sig text,
! user_sig_bbcode_uid char(10),
- user_icq varchar(15),
- user_website varchar(100),
- user_from varchar(100),
- user_aim varchar(255),
- user_yim varchar(255),
- user_msnm varchar(255),
user_occ varchar(100),
user_interests varchar(255),
- user_actkey varchar(32),
- user_newpasswd varchar(32),
PRIMARY KEY (user_id),
KEY user_session_time (user_session_time)
- );
-
-
- # --------------------------------------------------------
- #
- # Table structure for table 'phpbb_vote_desc'
- #
- CREATE TABLE phpbb_vote_desc (
- vote_id mediumint(8) UNSIGNED NOT NULL auto_increment,
- topic_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- vote_text text NOT NULL,
- vote_start int(11) NOT NULL DEFAULT '0',
- vote_length int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (vote_id),
- KEY topic_id (topic_id)
- );
-
-
- # --------------------------------------------------------
- #
- # Table structure for table 'phpbb_vote_results'
- #
- CREATE TABLE phpbb_vote_results (
- vote_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- vote_option_id tinyint(4) UNSIGNED NOT NULL DEFAULT '0',
- vote_option_text varchar(255) NOT NULL,
- vote_result int(11) NOT NULL DEFAULT '0',
- KEY vote_option_id (vote_option_id),
- KEY vote_id (vote_id)
- );
-
-
- # --------------------------------------------------------
- #
- # Table structure for table 'phpbb_vote_voters'
- #
- CREATE TABLE phpbb_vote_voters (
- vote_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- vote_user_id mediumint(8) NOT NULL DEFAULT '0',
- vote_user_ip char(40) NOT NULL,
- KEY vote_id (vote_id),
- KEY vote_user_id (vote_user_id),
- KEY vote_user_ip (vote_user_ip)
);
--- 519,540 ----
user_avatar char(100),
user_avatar_type tinyint(4) DEFAULT '0' NOT NULL,
! user_avatar_width tinyint(4) UNSIGNED,
! user_avatar_height tinyint(4) UNSIGNED,
user_sig text,
! user_sig_bbcode_uid varchar(10),
! user_from varchar(100),
! user_icq varchar(15),
! user_aim varchar(255),
! user_yim varchar(255),
! user_msnm varchar(255),
! user_website varchar(100),
! user_actkey varchar(32),
! user_newpasswd varchar(32),
user_occ varchar(100),
user_interests varchar(255),
PRIMARY KEY (user_id),
KEY user_session_time (user_session_time)
);
|
|
From: Paul S. O. <ps...@us...> - 2002-06-20 17:01:28
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv5141/includes
Modified Files:
Tag: phpBB-2_0_0
sessions.php
Log Message:
Bug fixes
Index: sessions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/sessions.php,v
retrieving revision 1.58.2.3
retrieving revision 1.58.2.4
diff -C2 -r1.58.2.3 -r1.58.2.4
*** sessions.php 14 Jun 2002 16:35:14 -0000 1.58.2.3
--- sessions.php 20 Jun 2002 17:01:23 -0000 1.58.2.4
***************
*** 213,217 ****
else
{
! $session_data = '';
$session_id = ( isset($HTTP_GET_VARS['sid']) ) ? $HTTP_GET_VARS['sid'] : '';
$sessionmethod = SESSION_METHOD_GET;
--- 213,217 ----
else
{
! $sessiondata = '';
$session_id = ( isset($HTTP_GET_VARS['sid']) ) ? $HTTP_GET_VARS['sid'] : '';
$sessionmethod = SESSION_METHOD_GET;
|
|
From: Paul S. O. <ps...@us...> - 2002-06-20 16:26:28
|
Update of /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan
In directory usw-pr-cvs1:/tmp/cvs-serv26928/language/lang_chinese_traditional_taiwan
Modified Files:
Tag: phpBB-2_0_0
lang_admin.php lang_main.php
Log Message:
More commits that I thought I'd made ... lang packs on SF are same as these
Index: lang_admin.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/Attic/lang_admin.php,v
retrieving revision 1.2.2.1
retrieving revision 1.2.2.2
diff -C2 -r1.2.2.1 -r1.2.2.2
*** lang_admin.php 8 Apr 2002 14:44:13 -0000 1.2.2.1
--- lang_admin.php 20 Jun 2002 16:25:55 -0000 1.2.2.2
***************
*** 13,17 ****
/***************************************************************************
! * Traditional Chinese Translation [ÁcÅ餤¤å»y¨t]
* -------------------
* begin : Thu Nov 26 2001
--- 13,17 ----
/***************************************************************************
! * Traditional Chinese Translation [ÁcÅ餤¤å»y¨t]
* -------------------
[...1401 lines suppressed...]
! $lang['ftp_info'] = '¿é¤J±zªº FTP ¸ê°T';
! $lang['Attempt_ftp'] = '¹Á¸Õ¨Ï¥Î FTP ¤W¶Ç³]©wÀÉ:';
! $lang['Send_file'] = '¦Û¦æ¤W¶Ç³]©wÀÉ';
! $lang['ftp_path'] = '¦w¸Ë phpBB 2 ªº FTP ¸ô®|:';
! $lang['ftp_username'] = '±zªº FTP µn¤J¦WºÙ:';
! $lang['ftp_password'] = '±zªº FTP µn¤J±K½X:';
! $lang['Transfer_config'] = '¶}©l¶Ç¿é';
! $lang['NoFTP_config'] = 'FTP ¤W¶Ç³]©wÀÉ¥¢±Ñ. ½Ð¤U¸ü³]©wÀɨùÁ¸Õ¤â°Ê¤W¶Ç.';
!
! $lang['Install'] = '§¹¾ã¦w¸Ë';
! $lang['Upgrade'] = '¨t²Î¤É¯Å';
! $lang['Install_Method'] = '½Ð¿ï¾Ü¦w¸Ë¼Ò¦¡';
! $lang['Install_No_Ext'] = '±z¥D¾÷¤Wªº PHP ³]©w¨Ã¤£¤ä´©±z©Ò¿ï¾Üªº¸ê®Æ®w«¬ºA';
! $lang['Install_No_PCRE'] = 'phpBB2 »Ýn¨Ï¥Î¨ì Perl-Compatible Regular Expressions Module, ¦Ó±zªº PHP ³]©w¨Ã¤£¤ä´©³o¶µ¥\¯à';
//
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/Attic/lang_main.php,v
retrieving revision 1.4.2.1
retrieving revision 1.4.2.2
diff -C2 -r1.4.2.1 -r1.4.2.2
*** lang_main.php 8 Apr 2002 14:44:13 -0000 1.4.2.1
--- lang_main.php 20 Jun 2002 16:25:55 -0000 1.4.2.2
***************
*** 12,16 ****
/***************************************************************************
! * Traditional Chinese Translation [ÁcÅ餤¤å»y¨t]
* -------------------
* begin : Thu Nov 26 2001
--- 12,16 ----
/***************************************************************************
! * Traditional Chinese Translation [ÁcÅ餤¤å»y¨t]
* -------------------
[...1967 lines suppressed...]
! $lang['Critical_Information'] = "«¤j°T®§";
! $lang['General_Error'] = "¤@¯ë¿ù»~";
! $lang['Critical_Error'] = "«¤j¿ù»~";
! $lang['An_error_occured'] = "µo¥Í¿ù»~";
! $lang['A_critical_error'] = "µo¥Í«¤j¿ù»~";
//
--- 1008,1018 ----
// specific failure on a page)
//
! $lang['Information'] = '¨t²Î°T®§';
! $lang['Critical_Information'] = '«¤j°T®§';
! $lang['General_Error'] = '¤@¯ë¿ù»~';
! $lang['Critical_Error'] = '«¤j¿ù»~';
! $lang['An_error_occured'] = 'µo¥Í¿ù»~';
! $lang['A_critical_error'] = 'µo¥Í«¤j¿ù»~';
//
|
|
From: Paul S. O. <ps...@us...> - 2002-06-20 16:26:01
|
Update of /cvsroot/phpbb/phpBB2/language/lang_portuguese
In directory usw-pr-cvs1:/tmp/cvs-serv26928/language/lang_portuguese
Modified Files:
Tag: phpBB-2_0_0
lang_admin.php lang_main.php
Log Message:
More commits that I thought I'd made ... lang packs on SF are same as these
Index: lang_admin.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_portuguese/Attic/lang_admin.php,v
retrieving revision 1.4.2.1
retrieving revision 1.4.2.2
diff -C2 -r1.4.2.1 -r1.4.2.2
*** lang_admin.php 5 May 2002 12:17:05 -0000 1.4.2.1
--- lang_admin.php 20 Jun 2002 16:25:56 -0000 1.4.2.2
***************
*** 29,53 ****
// in the modules[][] arrays in each module file
//
! $lang['General'] = "Admin Geral";
! $lang['Users'] = "Admin de Utilizadores";
! $lang['Groups'] = "Admin de Grupo";
! $lang['Forums'] = "Admin de Fórum";
! $lang['Styles'] = "Admin de Estilos";
!
! $lang['Configuration'] = "Configuração";
! $lang['Permissions'] = "Permissões";
[...1373 lines suppressed...]
! $lang['Upgrade'] = 'Actualizar';
! $lang['Install_Method'] = 'Escolher o seu método de instalação';
! $lang['Install_No_Ext'] = 'A configuração de php no seu server não aceita o tipo de base de dados que escolheu';
! $lang['Install_No_PCRE'] = 'O phpBB2 requer o módulo para php Perl-Compatible Regular Expressions cuja configuração do seu php parece não aceitar!';
//
***************
*** 718,720 ****
// -------------------------------------------------
! ?>
--- 719,721 ----
// -------------------------------------------------
! ?>
\ No newline at end of file
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_portuguese/Attic/lang_main.php,v
retrieving revision 1.7.2.1
retrieving revision 1.7.2.2
diff -C2 -r1.7.2.1 -r1.7.2.2
*** lang_main.php 5 May 2002 12:17:05 -0000 1.7.2.1
--- lang_main.php 20 Jun 2002 16:25:57 -0000 1.7.2.2
***************
*** 7,19 ****
* email : su...@ph...
*
! * $Id$
*
****************************************************************************/
- /****************************************************************************
- * Translation by:
- * LuizCB (Pincel) Lu...@pi... || http://pincel.net
- ****************************************************************************/
[...1962 lines suppressed...]
//
! $lang['Information'] = 'Informação';
! $lang['Critical_Information'] = 'Informação Crítica';
! $lang['General_Error'] = 'Erro Geral';
! $lang['Critical_Error'] = 'Erro Crítico';
! $lang['An_error_occured'] = 'Ocorreu um Erro';
! $lang['A_critical_error'] = 'Ocorreu um Erro Crítico';
//
***************
*** 984,986 ****
// -------------------------------------------------
! ?>
--- 1006,1008 ----
// -------------------------------------------------
! ?>
\ No newline at end of file
|
|
From: Paul S. O. <ps...@us...> - 2002-06-20 16:26:00
|
Update of /cvsroot/phpbb/phpBB2/language/lang_greek
In directory usw-pr-cvs1:/tmp/cvs-serv26928/language/lang_greek
Modified Files:
Tag: phpBB-2_0_0
lang_admin.php lang_faq.php lang_main.php
Log Message:
More commits that I thought I'd made ... lang packs on SF are same as these
Index: lang_admin.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/Attic/lang_admin.php,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -C2 -r1.1 -r1.1.2.1
*** lang_admin.php 25 Jan 2002 01:39:03 -0000 1.1
--- lang_admin.php 20 Jun 2002 16:25:55 -0000 1.1.2.1
***************
*** 1,5 ****
<?php
/***************************************************************************
! * lang_admin.php [Greek]
* -------------------
* begin : Sat Dec 16 2000
--- 1,6 ----
<?php
+
/***************************************************************************
! * lang_admin.php [English]
[...1352 lines suppressed...]
! $lang['Upgrade'] = "ÁíáâÜèìçóç";
!
!
! $lang['Install_Method'] = "ÅðéëïãÞ ìåèüäïõ åãêáôÜóôáóçò";
! $lang['Install_No_Ext'] = "Ïé ñõèìßóåéò ôçò php óôïí äéáêïìéóôÞ óáò äåí õðïóôçñßæïõí ôï ôýðï Â.ÄåäïìÝíùí ðïõ åðéëÝîáôå";
! $lang['Install_No_PCRE'] = "Ôï phpBB2 Áðáéôåß Perl-Compatible Regular Expressions Module ãéá ôçí php ôï ïðïßï äåí öáßíåôáé íá åßíáé åíåñãü, áðü ôéò ñõèìßóåéò óáò ôéò php!";
//
***************
*** 682,684 ****
// -------------------------------------------------
! ?>
\ No newline at end of file
--- 720,722 ----
// -------------------------------------------------
! ?>
Index: lang_faq.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/Attic/lang_faq.php,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -r1.2 -r1.2.2.1
*** lang_faq.php 10 Mar 2002 03:23:55 -0000 1.2
--- lang_faq.php 20 Jun 2002 16:25:56 -0000 1.2.2.1
***************
*** 1,87 ****
! <?php
! /***************************************************************************
! * lang_faq.php [Greek]
! * -------------------
! * begin : Wednesday Oct 3, 2001
! * copyright : (C) 2001 The phpBB Group
! * email : su...@ph...
! *
! * $Id$
! *
! *
! ***************************************************************************/
!
! /***************************************************************************
! *
! * This program is free software; you can redistribute it and/or modify
! * it under the terms of the GNU General Public License as published by
! * the Free Software Foundation; either version 2 of the License, or
! * (at your option) any later version.
! *
! ***************************************************************************/
!
! //
! // Translation by Alexandros Topalidis (arttor)
! // Email : ar...@ee...
! //
!
!
! $faq[] = array("--","Óýíäåóç êáé ÅããñáöÞ");
! $faq[] = array("Ãéáôß äåí ìðïñþ íá óõíäåèþ;", "¸÷åôå åããñáöåß; ÐñÝðåé íá Ý÷åôå åããñáöåß ãéá íá ìðïñÝóåôå íá óõíäåèåßôå. ¸÷åôå áðïêëåéóôåß áðü ôïí ðßíáêá áíáêïéíþóåùí (óå áõôÞ ôçí ðåñßðôùóç åìöáíßæåôáé ó÷åôéêü ìÞíõìá); Áí óõìâáßíåé êÜôé ôÝôïéï, ðñÝðåé íá åðéêïéíùíÞóåôå ìå ôï äéá÷åéñéóôÞ ãéá íá ìÜèåôå ôï ëüãï ãéá ôïí ïðïßï äåí óáò åðéôñÝðåôáé ç ðñüóâáóç. Áí Ý÷åôå åããñáöåß, äåí Ý÷åôå áðïêëåéóôåß áðü ôçí óåëßäá áëëÜ áêüìá äåí ìðïñåßôå íá óõíäåèåßôå, åëÝãîôå ôï üíïìá ÷ñÞóôç êáé ôïí êùäéêü ðïõ Ý÷åôå (óôéò ðåñéóóüôåñåò ðåñéðôþóåéò áõôü åßíáé ôï ðñüâëçìá). Óå áíôßèåôç ðåñßðôùóç åðéêïéíùíÞóôå ìå ôïí äéá÷åéñéóôÞ ôïõ óõóôÞìáôïò ãéá íá äéáðéóôþóåôå ôé óõìâáßíåé.");
! $faq[] = array("Ãéáôß ðñÝðåé íá åããñáöþ;", "Ìðïñåß êáé íá ìçí ÷ñåéÜæåôáé. Áõôü åîáñôÜôáé áðü ôï áí ï äéá÷åéñéóôÞò ôçò õðçñåóßáò Ý÷åé ïñßóåé íá áðáéôåßôáé ç óýíäåóç ðñïêåéìÝíïõ ï ÷ñÞóôçò íá Ý÷åé ôç äõíáôüôçôá áðïóôïëÞò ìçíõìÜôùí. Ùóôüóï óå êÜèå ðåñßðôùóç ç åããñáöÞ èá óáò äþóåé ðñüóâáóç óå ðñüóèåôåò õðçñåóßåò ïé ïðïßåò äåí åßíáé äéáèÝóéìåò óôïõò åðéóêÝðôåò-÷ñÞóôåò. ÔÝôïéåò åßíáé ç ÷ñÞóç ïñéæüìåíùí åéêüíùí avatar, ç äõíáôüôçôá áðïóôïëÞò ðñïóùðéêþí ìçíõìÜôùí, áðïóôïëÞ email óôïõò Üëëïõò ÷ñÞóôåò, óõììåôï÷Þ óå ïìÜäåò ÷ñçóôþí, êëð. ×ñåéÜæïíôáé ìüíï ëßãá äåõôåñüëåðôá ãéá ôçí åããñáöÞ êáé åðïìÝíùò åßíáé êáëýôåñá åÜí Ý÷åôå åããñáöåß.");
! $faq[] = array("Ãéáôß áðïóõíäÝïìáé áõôüìáôá;", "Áí äåí Ý÷åôå åðéëÝîåé ôï åéêïíßäéï <i>Áõôüìáôç Óýíäåóç</i> ìåôÜ ôç óýíäåóÞ óáò óôïí ðßíáêá èá ðáñáìåßíåôå óõíäåìÝíïò ìüíï ãéá ðñïêáèïñéóìÝíï ÷ñïíéêü äéÜóôçìá. ÁõôÞ ç ñýèìéóç õðÜñ÷åé ãéá íá áðïôñÝøåé êáôÜ÷ñçóç ôïõ ëïãáñéáóìïý óáò áðü êÜðïéïí Üëëï. Ãéá íá ðáñáìåßíåôå óõíäåìÝíïò, ôóåêÜñåôå ôï åéêïíßäéï ðïõ õðÜñ÷åé óôçí ïèüíç óýíäåóçò. Áí ÷ñçóéìïðïéåßôå êïéíü÷ñçóôï õðïëïãéóôÞ (õðïëïãéóôÞò ðïõ âñßóêåôáé ãéá ðáñÜäåéãìá óå âéâëéïèÞêç, óå internet cafe, óå õðïëïãéóôéêü êÝíôñï Ðáíåðéóôçìßïõ, ê.ë.ð.) êáëü èá åßíáé íá ìçí åíåñãïðïéÞóåôå áõôÞ ôçí åðéëïãÞ.");
! $faq[] = array("Ðþò ãßíåôáé ç áðüêñõøç (ìç óõìðåñßëçøç) ôïõ ïíüìáôüò ìïõ áðü ôç ëßóôá ôùí åããåãñáììÝíùí ÷ñçóôþí;", "Óôï Ðñïößë óáò èá âñåßôå ôçí åðéëïãÞ <i> Áðüêñõøç ôùí óôïé÷åßùí ìïõ êáôÜ ôçí äéÜñêåéá ôçò óýíäåóçò </i>, áí ôï åíåñãïðïéÞóåôå <i>on</i> ôï üíïìá óáò üôáí åßóôå óõíäåìÝíïò èá åßíáé ïñáôü ìüíï áðü ôïõò äéá÷åéñéóôÝò ôïõ óõóôÞìáôïò êáé åóÜò. Èá õðïëïãßæåóôå ùò êñõììÝíïò ÷ñÞóôçò.");
! $faq[] = array("¸÷ù ÷Üóåé ôïí êùäéêü ìïõ!", "Ìçí ðáíéêïâÜëëåóôå! Ðáñüôé äåí ìðïñïýìå íá âñïýìå ôïí ðáëéü óáò êùäéêü, ìðïñïýìå íá ôïõ äþóïõìå íÝá ôéìÞ. Ãéá íá îåêéíÞóåôå ôç äéáäéêáóßá ðçãáßíåôå óôç óåëßäá óýíäåóçò êáé ðáôÞóôå <u>¸÷ù îå÷Üóåé ôïí êùäéêü ìïõ</u>, áêïëïõèÞóôå ôéò ïäçãßåò êáé èá åßóôå ðÜëé online óå ìçäÝí ÷ñüíï!");
! $faq[] = array("¸÷ù åããñáöåß áëëÜ äåí ìðïñþ íá óõíäåèþ!", "Ðñþôá áðü üëá âåâáéùèåßôå üôé åéóáãÜãáôå ôï óùóôü üíïìá ÷ñÞóôç êáé êùäéêü. Áí áõôÜ åßíáé óùóôÜ ôüôå ìðïñåß íá Ý÷ïõí óõìâåß äýï ðñÜãìáôá. Áí Ý÷åé åíåñãïðïéçèåß COPPA support êáé êáôÜ ôç äéÜñêåéá ôçò åããñáöÞò Ý÷åôå êÜíåé click óôçí åðéëïãÞ <u>Åßìáé êÜôù ôùí 13 ÷ñüíùí</u>, ôüôå èá ðñÝðåé íá áêïëïõèÞóåôå ôéò ïäçãßåò ðïõ Ý÷åôå ëÜâåé. Áí áõôÞ ç ðåñßðôùóç äåí óáò êáëýðôåé ìÞðùò ï ëïãáñéáóìüò óáò ÷ñåéÜæåôáé åíåñãïðïßçóç; ÌåñéêÜ óõóôÞìáôá áðáéôïýí üëåò ïé íÝåò åããñáöÝò íá åíåñãïðïéïýíôáé, åßôå áðü åóÜò åßôå áðü ôïí äéá÷åéñéóôÞ ðñïêåéìÝíïõ íá ìðïñåßôå íá óõíäåèåßôå. ÌåôÜ ôçí åããñáöÞ óáò ðñÝðåé íá åíçìåñùèÞêáôå êáôÜ ðüóï ÷ñåéÜæåôáé åíåñãïðïßçóç. Áí Ý÷åôå ëÜâåé ó÷åôéêü email ôüôå áêïëïõèÞóôå ôéò ïäçãßåò, äéáöïñåôéêÜ áí äåí Ý÷åôå ëÜâåé ôï email ðñÝðåé íá âåâáéùèåßôå üôé ç çëåêôñïíéêÞ óáò äéåýèõíóç åßíáé Ýãêõñç. ¸íáò ëüãïò ãéá ôïí ïðïßï ÷ñçóéìïðïéåßôáé ç åíåñãïðïßçóç ëïãáñéáóìþí åßíáé ç ìåßùóç ôçò ðéèáíüôçôáò êÜðïéïé ÷ñÞóôåò íá óõíäÝïíôáé áíþíõìá êáé íá êáôá÷ñþíôáé ôéò äõíáôüôçôåò ðïõ ôïõò ðñïóöÝñåé ôï óýóôçìá. Áí åßóôå âÝâáéïò/âÝâáéç üôé ç çëåêôñïíéêÞ äéåýèõíóç ðïõ ÷ñçóéìïðïéÞóáôå åßíáé Ýãêõñç ôüôå ðñÝðåé íá åðéêïéíùíÞóåôå ìå ôïí äéá÷åéñéóôÞ ôïõ óõóôÞìáôïò.");
! $faq[] = array("¸÷ù åããñáöåß êáôÜ ôï ðáñåëèüí áëëÜ äåí ìðïñþ íá óõíäåèþ ðëÝïí;!", "Ïé ðéï ðéèáíïß ëüãïé ãéá áõôü åßíáé íá Ý÷åôå äþóåé ëáíèáóìÝíï üíïìá ÷ñÞóôç Þ êùäéêü (åëÝãîôå ôï email ðïõ ëÜâáôå üôáí åããñáöÞêáôå) Þ ï äéá÷åéñéóôÞò íá Ý÷åé äéáãñÜøåé ôï ëïãáñéáóìü óáò ãéá êÜðïéï ëüãï. Áí óõìâáßíåé ôï äåýôåñï ôüôå ìÞðùò äåí Ý÷åôå êÜíåé êáìßá áðïóôïëÞ; Åßíáé óýíçèåò óå ôÝôïéá óõóôÞìáôá ç ðåñéïäéêÞ äéáãñáöÞ ÷ñçóôþí ðïõ äåí Ý÷ïõí óôåßëåé êáíÝíá ìÞíõìá þóôå íá ìåéþíåôáé ôï ìÝãåèïò ôçò âÜóçò. ÐñïóðáèÞóôå íá åããñáöåßôå îáíÜ êáé íá åìðëáêåßôå óôéò óõæçôÞóåéò.");
!
!
! $faq[] = array("--","ÐñïôéìÞóåéò ×ñÞóôç êáé ñõèìßóåéò");
! $faq[] = array("Ðþò ìðïñþ íá áëëÜîù ôéò ñõèìßóåéò ìïõ;", "¼ëåò ïé ñõèìßóåéò óáò (áí åßóôå åããåãñáììÝíïò) áðïèçêåýïíôáé óôç âÜóç. Ãéá íá ôéò áëëÜîåôå êÜíôå êëéê óôï <u>Ðñïößë</u> óáò (ãåíéêÜ õðÜñ÷åé óôï ðÜíù ìÝñïò ôùí ðåñéóóüôåñùí óåëßäùí áí êáé ìðïñåß óå êÜðïéåò íá ìçí åìöáíßæåôáé). Ç åðéëïãÞ áõôÞ èá óáò åðéôñÝøåé íá áëëÜîåôå ôéò ñõèìßóåéò óáò");
! $faq[] = array("The times are not correct!", "The times are almost certainly correct, however what you may be seeing are times displayed in a timezone different from the one you are in. If this is the case you should change your profile setting for the timezone to match your particular area, e.g. London, Paris, New York, Sydney, etc. Please note that changing the timezone, like most settings can only be done by registered users. So if you are not registered this is a good time to do so, if you pardon the pun!");
! $faq[] = array("I changed the timezone and the time is still wrong!", "If you are sure you have set the timezone correctly and the time is still different the most likely answer is daylight savings time (or summer time as it is known in the UK and other places). The board is not designed to handle the changeovers between standard and daylight time so during summer months the time may be an hour different from the real local time.");
! $faq[] = array("My language is not in the list!", "The most likely reasons for this are either the administrator did not install your language or someone has not translated this board into your language. Try asking the board administrator if they can install the language pack you need, if it does not exist then please feel free to create a new translation. More information can be found at the phpBB Group website (see link at bottom of pages)");
! $faq[] = array("How do I show an image below my username?", "There may be two images below a username when viewing posts. The first is an image associated with your rank, generally these take the form of stars or blocks indicating how many posts you have made or your status on the forums. Below this may be a larger image known as an avatar, this is generally unique or personal to each user. It is up to the board administrator to enable avatars and they have a choice over the way in which avatars can be made available. If you are unable to use avatars then this is the decision of the board admin, you should ask them their reasons (we're sure they'll be good!)");
! $faq[] = array("How do I change my rank?", "In general you cannot directly change the wording of any rank (ranks appear below your username in topics and on your profile depending on the style used). Most boards use ranks to indicate the number of posts you have made and to identify certain users, e.g. moderators and administrators may have a special rank. Please do not abuse the board by posting unnecessarily just to increase your rank, you will probably find the moderator or administrator will simply lower your post count.");
! $faq[] = array("When I click the email link for a user it asks me to login?", "Sorry but only registered users can send email to people via the built-in email form (if the admin has enabled this feature). This is to prevent malicious use of the email system by anonymous users.");
!
!
! $faq[] = array("--","Posting Issues");
! $faq[] = array("How do I post a topic in a forum?", "Easy, click the relevant button on either the forum or topic screens. You may need to register before you can post a message, the facilities available to you are listed at the bottom of the forum and topic screens (the <i>You can post new topics, You can vote in polls, etc.<i> list)");
! $faq[] = array("How do I edit or delete a post?", "Unless you are the board admin or forum moderator you can only edit or delete your own posts. You can edit a post (sometimes for only a limited time after it was made) by clicking the <i>edit</i> button for the relevant post. If someone has already replied to the post you will find a small piece of text output below the post when you return to the topic, this lists the number of times you edited it. This will only appear if no one has replied, it also will not appear if moderators or administrators edit the post (they should leave a message saying what they altered and why). Please note that normal users cannot delete a post once someone has replied.");
! $faq[] = array("How do I add a signature to my post?", "To add a signature to a post you must first create one, this is done via your profile. Once created you can check the <i>Add Signature</i> box on the posting form to add your signature. You can also add a signature by default to all your posts by checking the appropriate radio box in your profile (you can still prevent a signature being added to individual posts by un-checking the add signature box on the posting form)");
! $faq[] = array("How do I create a poll?", "Creating a poll is easy, when you post a new topic (or edit the first post of a topic, if you have permission) you should see a <i>Add Poll</i> form below the main posting box (if you cannot see this then you probably do not have rights to create polls). You should enter a title for the poll and then at least two options (to set an option type in the poll question and click the <i>Add option</i> button. You can also set a time limit for the poll, 0 is an infinite poll. There will be a limit to the number of options you can list, this is set by the board administrator");
! $faq[] = array("How do I edit or delete a poll?", "As with posts, polls can only be edited by the original poster, a moderator or board admin. To edit a poll click the first post in the topic (this always has the poll associated with it). If no one has cast a vote then users can delete the poll or edit any poll option, however if people have already placed votes only moderators or administrators can edit or delete it. This is to prevent people rigging polls by changing options mid-way through a poll");
! $faq[] = array("Why can't I access a forum?", "Some forums may be limited to certain users or groups. To view, read, post, etc. you may need special authorisation, only the forum moderator and board admin can grant this access, you should contact them.");
! $faq[] = array("Why can't I vote in polls?", "Only registered users can vote in polls (so as to prevent spoofing of results). If you have registered and still cannot vote then you probably do not have appropriate access rights.");
!
!
! $faq[] = array("--","Formatting and Topic Types");
! $faq[] = array("What is BBCode?", "BBCode is a special implementation of HTML, whether you can use BBCode is determined by the administrator (you can also disable it on a per post basis from the posting form). BBCode itself is similar in style to HTML, tags are enclosed in square braces [ and ] rather than < and > and it offers greater control over what and how something is displayed. For more information on BBCode see the guide which can be accessed from the posting page.");
! $faq[] = array("Can I use HTML?", "That depends on whether the administrator allows you too, they have complete control over it. If you are allowed to use it you will probably find only certain tags work. This is a <i>safety</i> feature to prevent people abusing the board by using tags which may destroy the layout or cause other problems. If HTML is enabled you can disable it on a per post basis from the posting form.");
! $faq[] = array("What are Smileys?", "Smileys, or Emoticons are small graphical images which can be used to express some feeling using a short code, e.g. :) means happy, :( means sad. The full list of emoticons can be seen via the posting form. Try not to overuse smileys though, they can quickly render a post unreadable and a moderator may decide to edit them out or remove the post altogether");
! $faq[] = array("Can I post Images?", "Images can indeed be shown in your posts. However, there is no facility at present for uploading images directly to this board. Therefore you must link to an image stored on a publicly accessible web server, e.g. http://www.some-unknown-place.net/my-picture.gif. You cannot link to pictures stored on your own PC (unless it is a publicly accessible server) nor images stored behind authentication mechanisms, e.g. hotmail or yahoo mailboxes, password protected sites, etc. To display the image use either the BBCode [img] tag or appropriate HTML (if allowed).");
! $faq[] = array("What are Announcements?", "Announcements often contain important information and you should read them as soon as possible. Announcements appear at the top of every page in the forum to which they are posted. Whether or not you can post an announcement depends on the permissions required, these are set by the administrator.");
! $faq[] = array("What are Sticky topics?", "Sticky topics appear below any announcements in viewforum and only on the first page. They are often quite important so you should read them where possible. As with announcements the board administrator determines what permissions are required to post sticky topics in each forum.");
! $faq[] = array("What are Locked topics?", "Locked topics are set this way by either the forum moderator or board administrator. You cannot reply to locked topics and any poll it contained is automatically ended. Topics may be locked for many reasons.");
!
!
! $faq[] = array("--","User Levels and Groups");
! $faq[] = array("What are Administrators?", "Administrators are people assigned the highest level of control over the entire board. These people can control all facets of board operation which includes setting permissions, banning users, creating usergroups or moderators, etc. They also have full moderator capabilities in all the forums.");
! $faq[] = array("What are Moderators?", "Moderators are individuals (or groups of individuals) whose job it is to look after the running of the forums from day to day. They have the power to edit or delete posts and lock, unlock, move, delete and split topics in the forum they moderate. Generally moderators are there to prevent people going <i>off-topic<i> or posting abusive or offensive material.");
! $faq[] = array("What are Usergroups?", "Usergroups are a way in which board administrators can group users. Each user can belong to several groups (this differs from most other boards) and each group can be assigned individual access rights. This makes it easy for administrators to set up several users as moderators of a forum, or to give them access to a private forum, etc.");
! $faq[] = array("How do I join a Usergroup?", "To join a usergroup click the usergroup link on the page header (dependent on template design), you can then view all usergroups. Not all groups are <i>open access</i>, some are closed and some may even have hidden memberships. If the board is open then you can request to join it by clicking the appropriate button. The user group moderator will need to approve your request, they may ask why you want to join the group. Please do not pester a group moderator if they turn your request down, they will have their reasons.");
! $faq[] = array("How do I become a Usergroup Moderator?", "Usergroups are initially created by the board admin, they also assign a board moderator. If you are interested in creating a usergroup then your first point of contact should be the admin, try dropping them a private message.");
!
!
! $faq[] = array("--","Private Messaging");
! $faq[] = array("I cannot send private messages!", "There are three reasons for this; you are not registered and/or not logged on, the board administrator has disabled private messaging for the entire board or the board administrator has prevented you from sending messages. If it is the later case you should try asking the administrator why.");
! $faq[] = array("I keep getting unwanted private messages!", "In the future we will be adding an ignore list to the private messaging system. For now though if you keep receiving unwanted private messages from someone inform the board admin, they have the power to prevent a user from sending private messages at all.");
! $faq[] = array("I have received a spamming or abusive email from someone on this board!", "We are sorry to hear that. The email form feature of this board includes safeguards to try and track users who send such posts. You should email the board administrator with a full copy of the email you received, it is very important this include the headers (these list details of the user that sent the email). They can then take action.");
!
!
! $faq[] = array("--","phpBB 2 Issues");
! $faq[] = array("Why isn't X feature available?", "This software was written by and licensed through phpBB Group. If you believe a feature needs to be added then please visit the phpbb.com website and see what phpBB Group have to say. Please do not post feature requests to the board at phpbb.com, the Group uses sourceforge to handle tasking of new features. Please read through the forums and see what, if any, our position may already be for a feature and then follow the procedure given there.");
! $faq[] = array("Who do I contact about abusive and/or legal matters related to this board?", "You should contact the administrator of this board. If you cannot find who this you should first contact one of the forum moderators and ask them who you should in turn contact. If still get no response you should contact the owner of the domain (do a whois lookup) or, if this is running on a free service (e.g. yahoo, free.fr, f2s.com, etc.), the management or abuse department of that service. Please note that phpBB Group has absolutely no control and cannot in any way be held liable over how, where or by whom this board is used. It is absolutely pointless contacting phpBB Group in relation to any legal (cease and desist, liable, defamatory comment, etc.) matter not directly related to the phpbb.com website or the discrete software of phpBB itself. If you do email phpBB Group about any third party use of this software then you should expect a terse response or no response at all.");
!
?>
--- 1,94 ----
! <?php
! /***************************************************************************
! * lang_faq.php [Greek]
! * -------------------
! * begin : Wednesday Oct 3, 2001
! * copyright : (C) 2001 The phpBB Group
! * email : su...@ph...
! *
! * $Id$
! *
! *
! ***************************************************************************/
!
! /***************************************************************************
! *
! * This program is free software; you can redistribute it and/or modify
! * it under the terms of the GNU General Public License as published by
! * the Free Software Foundation; either version 2 of the License, or
! * (at your option) any later version.
! *
! ***************************************************************************/
!
! //
! // Translation by Alexandros Topalidis (arttor)
! // Email : ar...@ma...
! //
!
!
! $faq[] = array("--","ÈÝìáôá Óýíäåóçò êáé ÅããñáöÞò");
! $faq[] = array("Ãéáôß äåí ìðïñþ íá óõíäåèþ;", "¸÷åôå åããñáöåß; ÐñÝðåé íá Ý÷åôå åããñáöåß ãéá íá ìðïñÝóåôå íá óõíäåèåßôå. ÌÞðùò Ý÷åôå áðïêëåéóôåß áðü ôçí Ä. ÓõæÞôçóç (óå áõôÞ ôçí ðåñßðôùóç åìöáíßæåôáé ó÷åôéêü ìÞíõìá); Áí óõìâáßíåé êÜôé ôÝôïéï, ðñÝðåé íá åðéêïéíùíÞóåôå ìå ôï äéá÷åéñéóôÞ ãéá íá ìÜèåôå ôï ëüãï ãéá ôïí ïðïßï äåí óáò åðéôñÝðåôáé ç ðñüóâáóç. Åöüóïí Ý÷åôå åããñáöåß, êáé äåí Ý÷åôå áðïêëåéóôåß áðü ôçí óåëßäá, êáé åîáêïëïõèåßôå íá ìçí ìðïñåßôå íá óõíäåèåßôå, åëÝãîôå ôï üíïìá ÷ñÞóôç êáé ôïí êùäéêü ÷ñÞóôç ðïõ åéóÜãåôå (óôéò ðåñéóóüôåñåò ðåñéðôþóåéò áõôü åßíáé ôï ðñüâëçìá). Óå áíôßèåôç ðåñßðôùóç åðéêïéíùíÞóôå ìå ôïí äéá÷åéñéóôÞ ôïõ ðßíáêá ãéá íá äéáðéóôþóåôå ôé ìðïñåß íá óõìâáßíåé.");
! $faq[] = array("Ãéáôß èá ðñÝðåé íá åããñáöþ;", "Ìðïñåß êáé íá ìçí ÷ñåéÜæåôáé. Áõôü åîáñôÜôáé áðü ôï åÜí ï äéá÷åéñéóôÞò ôçò õðçñåóßáò Ý÷åé ïñßóåé íá áðáéôåßôáé ç óýíäåóç, ðñïêåéìÝíïõ ï ÷ñÞóôçò íá Ý÷åé ôç äõíáôüôçôá áðïóôïëÞò ìçíõìÜôùí. Áðü ôçí óôéãìÞ ðïõ èá åããñáöåßôå, èá áðïêôÞóåôå ðñüóâáóç óå ðñüóèåôåò õðçñåóßåò ïé ïðïßåò äåí åßíáé äéáèÝóéìåò óôïõò ÷ñÞóôåò-åðéóêÝðôåò. ÔÝôïéåò åßíáé, ç ÷ñÞóç ïñéæüìåíùí åéêüíùí ¶âáôáñ, ç äõíáôüôçôá áðïóôïëÞò ðñïóùðéêþí ìçíõìÜôùí, áðïóôïëÞ email óôïõò Üëëïõò ÷ñÞóôåò, óõììåôï÷Þ óå ïìÜäåò ÷ñçóôþí, êëð. ×ñåéÜæïíôáé ìüíï ëßãá äåõôåñüëåðôá ãéá íá ðñáãìáôïðïéÞóåôå ôçí åããñáöÞ, êáé åðïìÝíùò åßíáé ðñïôéìüôåñï íá åßóôå åããåãñáììÝíïò ÷ñÞóôçò.");
! $faq[] = array("Ãéáôß áðïóõíäÝïìáé áõôüìáôá;", "ÅÜí äåí Ý÷åôå åðéëÝîåé ôï êïõôÜêé <i> Íá ãßíåôáé ç óýíäåóç áõôüìáôá óå êÜèå ìïõ åðßóêåøç</i> êáôÜ ôç óýíäåóÞ óáò óôï óýóôçìá, èá ðáñáìÝíåôå óõíäåìÝíïò ìüíï ãéá ðñïêáèïñéóìÝíï ÷ñïíéêü äéÜóôçìá. ÁõôÞ ç ñýèìéóç õðÜñ÷åé ãéá íá áðïôñÝøåé êáôÜ÷ñçóç ôïõ ëïãáñéáóìïý óáò áðü êÜðïéïí Üëëï. Ãéá íá ðáñáìÝíåôå óõíäåìÝíïò, åðéëÝîôå ôï êïõôÜêé ðïõ õðÜñ÷åé óôçí ïèüíç óýíäåóçò. Ðñïóï÷Þ üìùò, åÜí ÷ñçóéìïðïéåßôå êïéíü÷ñçóôï õðïëïãéóôÞ (õðïëïãéóôÞò ï ïðïßïò âñßóêåôáé ãéá ðáñÜäåéãìá óå âéâëéïèÞêç, óå internet cafe, óå êÝíôñï õðïëïãéóôþí ðáíåðéóôçìßïõ Þ ó÷ïëåßïõ, ê.ë.ð.) èá Þôáí öñüíéìï íá ìçí åíåñãïðïéåßôå ðïôÝ áõôÞ ôçí åðéëïãÞ.");
! $faq[] = array("Ðþò ãßíåôáé ç áðüêñõøç (ìç óõìðåñßëçøç) ôïõ ïíüìáôüò ìïõ óôç ëßóôá ôùí óõíäåäåìÝíùí ÷ñçóôþí;", "Óôï ðñïößë óáò èá âñåßôå ôçí åðéëïãÞ <i> Áðüêñõøç ôùí óôïé÷åßùí ìïõ êáôÜ ôçí äéÜñêåéá ôçò óýíäåóçò </i>, áí ôï åíåñãïðïéÞóåôå <i>íáß</i> ôï üíïìá óáò, üôáí åßóôå óõíäåìÝíïò èá åßíáé ïñáôü ìüíï áðü ôïõò äéá÷åéñéóôÝò ôïõ óõóôÞìáôïò êáé åóÜò. Èá õðïëïãßæåóôå ùò ìç ïñáôüò ÷ñÞóôçò.");
! $faq[] = array("¸÷ù ÷Üóåé ôïí êùäéêü ìïõ!", "Ìçí ðáíéêïâÜëëåóôå! Ðáñ' üëï ðïõ äåí ìðïñïýìå íá áíáóýñïõìå ôïí ðáëéü óáò êùäéêü, ìðïñïýìå íá ôïõ äþóïõìå íÝá ôéìÞ. Ãéá íá îåêéíÞóåé ç äéáäéêáóßá áõôÞ ðçãáßíåôå óôç óåëßäá óýíäåóçò êáé ðáôÞóôå <u> ¸÷ù îå÷Üóåé ôï óõíèçìáôéêü ìïõ </u>, áêïëïõèÞóôå ôéò ïäçãßåò ãéá íá ëÜâåôå ôï íÝï óõíèçìáôéêü óáò.");
! $faq[] = array("Åßìáé åããåãñáììÝíïò áëëÜ äåí ìðïñþ íá óõíäåèþ!", "Ðñþôá áðü üëá âåâáéùèåßôå üôé åéóÜãåôå ôï óùóôü üíïìá ÷ñÞóôç êáé êùäéêü ÷ñÞóôç. Åöüóïí åßíáé óùóôÜ ôüôå ìðïñåß íá Ý÷ïõí óõìâåß äýï ôéíÜ. Íá Ý÷åé åíåñãïðïéçèåß ç COPPA äéáêÞñõîç åöüóïí êáôÜ ôç äéÜñêåéá ôçò åããñáöÞò Ý÷åôå åðéëÝîåé <u>Åßìáé êÜôù ôùí 13 åôþí</u>, ïðüôå èá ðñÝðåé íá áêïëïõèÞóåôå ôéò ïäçãßåò ðïõ Ý÷åôå ëÜâåé. Êáé ç äåýôåñç ðåñßðôùóç, íá Ý÷åôå ìüëéò åããñáöåß êáé ï ëïãáñéáóìüò óáò íá ÷ñåéÜæåôáé åíåñãïðïßçóç. ÌåñéêÜ óõóôÞìáôá áðáéôïýí üëåò ïé íÝåò åããñáöÝò íá åíåñãïðïéïýíôáé, åßôå áðü åóÜò åßôå áðü ôïí äéá÷åéñéóôÞ ðñïêåéìÝíïõ íá ìðïñÝóåôå íá óõíäåèåßôå. ÌåôÜ ôçí åããñáöÞ óáò, ðñÝðåé íá åíçìåñùèÞêáôå åÜí ÷ñåéÜæåôáé áõôÞ ç åíåñãïðïßçóç. Óôï ó÷åôéêü email ðïõ ëÜâáôå áêïëïõèÞóôå ôéò ïäçãßåò, äéáöïñåôéêÜ áí äåí Ý÷åôå ëÜâåé êáíÝíá email ðñÝðåé íá âåâáéùèåßôå üôé ç çëåêôñïíéêÞ óáò äéåýèõíóç åßíáé Ýãêõñç. ¸íáò ëüãïò ãéá ôïí ïðïßï ÷ñçóéìïðïéåßôáé ç åíåñãïðïßçóç ëïãáñéáóìþí åßíáé ç ìåßùóç ôçò ðéèáíüôçôáò êÜðïéïé ÷ñÞóôåò íá óõíäÝïíôáé áíþíõìá êáé íá êÜíïõí êáôÜ÷ñçóç ôùí äõíáôïôÞôùí ðïõ ôïõò ðñïóöÝñåé ôï óýóôçìá. Áí åßóôå âÝâáéïò/âÝâáéç üôé ç çëåêôñïíéêÞ äéåýèõíóç ðïõ ÷ñçóéìïðïéÞóáôå åßíáé Ýãêõñç ôüôå ðñÝðåé íá åðéêïéíùíÞóåôå ìå ôïí äéá÷åéñéóôÞ ôïõ óõóôÞìáôïò.");
! $faq[] = array("¸÷ù åããñáöåß êáôÜ ôï ðáñåëèüí áëëÜ äåí ìðïñþ íá óõíäåèþ ðëÝïí;!", "Ïé ðéï ðéèáíïß ëüãïé ãéá áõôü åßíáé íá Ý÷åôå äþóåé ëáíèáóìÝíï üíïìá ÷ñÞóôç Þ êùäéêü (åëÝãîôå ôï email ðïõ ëÜâáôå üôáí åããñáöÞêáôå) Þ ï äéá÷åéñéóôÞò íá Ý÷åé äéáãñÜøåé ôï ëïãáñéáóìü óáò ãéá êÜðoéï ëüãï. Áí óõìâáßíåé ôï äåýôåñï ôüôå ìÞðùò äåí Ý÷åôå êÜíåé êáìßá áðïóôïëÞ; Åßíáé óýíçèåò óå ôÝôïéá óõóôÞìáôá ç ðåñéïäéêÞ äéáãñáöÞ ÷ñçóôþí ðïõ äåí Ý÷ïõí óôåßëåé êáíÝíá ìÞíõìá ãéá íá ìåéþíåôáé ôï ìÝãåèïò ôçò âÜóçò äåäïìÝíùí. ÐñïóðáèÞóôå íá åããñáöåßôå îáíÜ êáé íá åìðëáêåßôå óôéò óõæçôÞóåéò.");
!
!
! $faq[] = array("--","Ðñïößë ×ñÞóôç êáé ñõèìßóåéò");
! $faq[] = array("Ðþò ìðïñþ íá áëëÜîù ôéò ñõèìßóåéò ìïõ;", "¼ëåò ïé ñõèìßóåéò óáò (åÜí åßóôå åããåãñáììÝíïò) áðïèçêåýïíôáé óå âÜóç äåäïìÝíùí. Ãéá íá ôéò áëëÜîåôå åðéëÝîôå ôï <u>Ðñïößë</u> (õðÜñ÷åé óôï ðÜíù ìÝñïò ôùí ðåñéóóüôåñùí óåëßäùí áí êáé ìðïñåß óå êÜðïéåò íá ìçí åìöáíßæåôáé). Ç åðéëïãÞ áõôÞ èá óáò åðéôñÝøåé íá áëëÜîåôå ôéò ñõèìßóåéò óáò");
! $faq[] = array("Ç þñá äåí åßíáé óùóôÞ!", "Ç þñá ðïõ âëÝðåôå åßíáé óùóôÞ, ìå ôçí äéáöïñÜ, ç þñá áõôÞ åßíáé äéáöïñåôéêÞò ÷ñïíïæþíçò áðü áõôÞí óôçí ïðïßá âñßóêåóôå (ð.÷. Ëïíäßíï, Ðáñßóé, ÁèÞíá, Óßäíåû ê.ë.ð). ×ñïíïæþíç ìðïñïýí íá áëëÜîïõí ìüíï ïé åããåãñáììÝíïé ÷ñÞóôåò, êáé åðçñåÜæåé ìüíï ôï ìÝëïò áõôü êáé ü÷é ôï óýóôçìá ïëüêëçñï.");
! $faq[] = array("¸÷ù áëëÜîåé ôçí ÷ñïíïæþíç áëëÜ êáé ðÜëé ç þñá äåí åßíáé óùóôÞ!", "Åöüóïí åßóôå âÝâáéïò üôé ñõèìßóáôå óùóôÜ ôçí ÷ñïíïæþíç êáé ðáñ' üëá áõôÜ äåí Ý÷åôå ôï óùóôü áðïôÝëåóìá, ç áðÜíôçóç âñßóêåôáé óôçí ÅáñéíÞ Éóçìåñßá. Ôï óýóôçìá äåí åßíáé ó÷åäéáóìÝíï íá ÷åéñßæåôáé ôéò áëëáãÝò áðü ÷åéìåñéíÞ óå èåñéíÞ þñá. ¸ôóé ôïõò êáëïêáéñéíïýò ìÞíåò ç þñá ßóùò íá åßíáé äéáöïñåôéêÞ áðü ôçí ôïðéêÞ óáò þñá.");
! $faq[] = array("Ç ãëþóóá ìïõ äåí óõìðåñéëáìâÜíåôáé óôïí êáôÜëïãï ìå ôéò ãëþóóåò ôïõ óõóôÞìáôïò!", " Ôï ðéèáíüôåñï åßíáé íá ìçí Ý÷åé åãêáôáóôáèåß ç ãëþóóá óáò áðü ôïí äéá÷åéñéóôÞ. Æçôåßóôå áðü ôïí äéá÷åéñéóôÞ íá åãêáôáóôÞóåé ôçí ãëþóóá ðïõ ÷ñåéÜæåóèå, êáé åÜí äåí õðÜñ÷åé ìðïñåßôå íá äçìéïõñãÞóåôå ìüíïé óáò ôá áñ÷åßá ôçò ãëþóóáò áõôÞò êáôüðéí óõíåííüçóçò ìå ôïí äéá÷åéñéóôÞ. Ãéá ðåñéóóüôåñåò ðëçñïöïñßåò áðåõèõíèåßôå óôéò óåëßäåò ôïõ phpBB Group (õðÜñ÷åé ðáñáðïìðÞ óôï ôÝëïò êÜèå óåëßäáò).");
! $faq[] = array("Ðþò ìðïñåß íá åìöáíéóèåß ìéá åéêüíá êÜôù áðü ôï üíïìá ôïõ ìÝëïõò;", "Ìðïñïýí íá õðÜñîïõí äýï åéäþí åéêüíåò êÜôù áðü ôï üíïìá ôïõ ìÝëïõò üôáí âëÝðåôå ôéò äçìïóéåýóåéò. Ç ðñþôç åéêüíá Ý÷åé ó÷Ýóç ìå ôïí âáèìü óáò êáé Ý÷åé ôçí ìïñöÞ áóôåñéþí Þ ôåôñáãþíùí ôá ïðïßá õðïäçëþíïõí ôï ðëÞèïò ôùí äçìïóéåýóåùí ðïõ Ý÷åôå êÜíåé Þ ôï áîßùìá óáò óôçí äçìüóéá óõæÞôçóç. ÊÜôù áðü áõôÞí ôçí åéêüíá ìðïñåß íá õðÜñ÷åé êáé ìå ìßá äåýôåñç ãíùóôÞ ùò ¶âáôáñ êáé ç ïðïßá åßíáé ìïíáäéêÞ, ðñïóùðéêÞ ãéá êÜèå ìÝëïò. Ç ÷ñÞóç ôùí ¶âáôáñ åßíáé ðñïáéñåôéêÞ êáé åîáñôÜôáé áðü ôïí äéá÷åéñéóôÞ ôïõ óõóôÞìáôïò åÜí Ý÷åé åíåñãïðïéÞóåé áõôÞí ôçí äõíáôüôçôá. Ç äéá÷åßñéóç ôùí ¶âáôáñ ãßíåôáé ìÝóá áðü ôçí êáñôÝëá åðåîåñãáóßáò ôïõ ðñïößë óáò.");
! $faq[] = array("Ðùò áëëÜæù ôïí âáèìü ìïõ;", "ÃåíéêÜ äåí ìðïñåßôå í' áëëÜîåôå Üìåóá ôïí âáèìü (ïé âáèìïß åìöáíßæïíôáé êÜôù áðü ôï üíïìá ÷ñÞóôç, óôéò äçìïóéåýóåéò êáé óôï Ðñïößë, áíÜëïãá ìå ôçí ðåñéâïëÞ ðïõ ÷ñçóéìïðïéåßôå). Ïé ðåñéóóüôåñïé ðßíáêåò ÷ñçóéìïðïéïýí ãñáììÝò ãéá íá áíáöÝñïõí ôïí áñéèìü äçìïóéåýóåùí ðïõ Ý÷åôå êÜíåé, êáé ãéá íá áíáãíùñßæïõí óõãêåêñéìÝíïõò ÷ñÞóôåò ð.÷. ïé äéá÷åéñéóôÝò ìðïñåß íá Ý÷ïõí åéäéêü âáèìü. Äåí ðñÝðåé íá êÜíåôå êáôÜ÷ñçóç ôïõ óõóôÞìáôïò ìå ðåñéôôÝò äçìïóéåýóåéò ìüíï êáé ìüíï ãéá íá áíåâÜóåôå ôïí âáèìü óáò äéüôé ðéèáíüôáôá ï äéá÷åéñéóôÞò èá áíáãêáóèåß íá áðåíåñãïðïéÞóåé ôçí êáôáìÝôñçóç äçìïóéåýóåùí.");
! $faq[] = array("Ãéá íá êÜíù ÷ñÞóç ôïõ óõíäÝóìïõ email åíüò ìÝëïõò ðñÝðåé íá åßìáé åããåãñáììÝíïò;", "Ìüíï ïé åããåãñáììÝíïé ÷ñÞóôåò ìðïñïýí íá óôÝëíïõí email ìÝóù ôçò õðÜñ÷ïõóáò öüñìáò (áðü ôçí óôéãìÞ ôçí ïðïßá ï äéá÷åéñéóôÞò Ý÷åé åíåñãïðïéÞóåé áõôü ôï ÷áñáêôçñéóôéêü), ãéá íá áðïöåõ÷èåß ç êáêüâïõëç ÷ñÞóç áõôïý ôïõ ÷áñáêôçñéóôéêïý áðü áíþíõìïõò ÷ñÞóôåò.");
!
!
! $faq[] = array("--","ÆçôÞìáôá Äçìïóßåõóçò");
! $faq[] = array("Ðþò áíáñôþ Ýíá èÝìá óôçí Ä. ÓõæÞôçóç;", "Åßíáé ðïëý åýêïëï, áðëÜ ðáôÞóôå ôï ó÷åôéêü åéêïíßäéï óôçí ïèüíç ôùí È. ÅíïôÞôùí. Ìðïñåß íá ÷ñåéáóôåß íá åããñáöåßôå ùò ìÝëïò ðñéí ìðïñÝóåôå íá óôåßëåôå ìÞíõìá. Ïé äõíáôüôçôåò ôéò ïðïßåò Ý÷åôå óôçí áðïóôïëÞ ôùí ìçíõìÜôùí åìöáíßæïíôáé óôï êÜôù ôìÞìá ôçò ïèüíçò ð.÷. (óôç <i>Ìðïñåßôå íá áíáñôÞóåôå íÝï ìÞíõìá , Ìðïñåßôå íá ëÜâåôå ìÝñïò óå äçìïøÞöéóìá, êëð<i> ëßóôá)");
! $faq[] = array("Ðþò ìðïñþ íá åðåîåñãáóèþ Þ íá äéáãñÜøù Ýíá äçìïóßåõìá;", "Ìðïñåßôå íá åðåîåñãáóèåßôå Þ íá äéáãñÜøåôå ìüíï ôá äéêÜ óáò ìçíýìáôá, åêôüò êáé åÜí åßóèå äéá÷åéñéóôÞò. Ìðïñåßôå íá åðåîåñãáóèåßôå Ýíá ìÞíõìá ( óõ÷íÜ ëßãç ìüíï þñá ìåôÜ ôçí äçìéïõñãßá ôïõ ) ðáôþíôáò ôï åéêïíßäéï ôçò <i> åðåîåñãáóßáò </i> óôï ó÷åôéêü ìÞíõìá. Èá âñåßôå Ýíá ìéêñü êåßìåíï êÜôù áðü ôçí äçìïóßåõóç üôáí åðéóôñÝøåôå óôï ÈÝìá, ôï ïðïßï áíáöÝñåé ðüóåò öïñÝò åðåîåñãáóèÞêáôå ôï ìÞíõìá áõôü. Áõôü ôï êåßìåíï èá åìöáíéóèåß ìüíï, åöüóïí äåí õðÜñ÷åé áðÜíôçóç ó' áõôü ôï èÝìá, üðùò åðßóçò åÜí ôï ìÞíõìá áõôü Ý÷åé åðåîåñãáóèåß Ýíáò äéá÷åéñéóôÞò Þ Ýíáò äéáìåóïëáâçôÞò (ïé ïðïßïé ðñÝðåé íá ðáñáèÝóïõí ôïõò ëüãïõò ãéá ôïõò ïðïßïõò Ýêáíáí ôçí åðåîåñãáóßá). Íá èõìÜóôå üôé Ýíá áðëü ìÝëïò äåí ìðïñåß íá äéáãñÜøåé Ýíá ìÞíõìá áðü ôçí óôéãìÞ ðïõ ôï ìÞíõìá áõôü Ý÷åé áðáíôçèåß.");
! $faq[] = array("Ðþò èÝôù õðïãñáöÞ óå ìßá äçìïóßåõóç ìïõ;", "ÐñÝðåé ðñþôá íá äçìéïõñãÞóåôå ìßá õðïãñáöÞ, êáé áõôü ãßíåôå ìÝóù ôïõ Ðñïößë óáò. Áðü ôçí óôéãìÞ ðïõ èá ôçí óõíôÜîåôå ìðïñåßôå íá óçìåéþóåôå ôçí åðéëïãÞ <i>ÐñïóÜñôçóç õðïãñáöÞò</i> óôçí öüñìá óýíôáîçò ôïõ êÜèå ìçíýìáôïò óáò, åðßóçò ìðïñåßôå íá óçìåéþóåôå ôçí åðéëïãÞ <i> Íá ðñïóáñôÜôáé ðÜíôá ç õðïãñáöÞ ìïõ </i> óôçí óåëßäá ôïõ Ðñïößë óáò ãéá áõôüìáôç ðñïóÜñôçóç ôçò õðïãñáöÞ óáò óå êÜèå ìÞíõìá. ¸ôóé Ý÷åôå ôçí äõíáôüôçôá íá áêõñþíåôå ôçí áõôüìáôç ðñïóÜñôçóç ôçò õðïãñáöÞò ãéá êÜèå ìÞíõìá îå÷ùñéóôÜ åëÝã÷ïíôáò ôçí åðéëïãÞ <i> ÐñïóÜñôçóç õðïãñáöÞò</i>");
! $faq[] = array("Ðþò äçìéïõñãþ Ýíá äçìïøÞöéóìá;", "Åßíáé ðïëý áðëü, äçìéïõñãþíôáò Ýíá íÝï ìÞíõìá ( Þ åÜí Ý÷åôå ôá äéêáéþìáôá íá åðåîåñãáóèåßôå ôï ðñþôï ìÞíõìá ìéáò È. Åíüôçôáò ) õðÜñ÷åé Ýíá ôìÞìá óôçí öüñìá óýíôáîçò ôïõ ìçíýìáôïò ìå ôßôëï <i> ÐñïóèÞêç äçìïøçößóìáôïò </i> ( åÜí äåí åìöáíßæåôáé ôßðïôá ðáñüìïéï ðéèáíüí íá ìçí Ý÷åôå äéêáéþìáôá äçìéïõñãßáò äçìïøçößóìáôïò ). ÁíáãñÜöåôå ôï ÈÝìá ôïõ äçìïøçößóìáôïò êáé ôïõëÜ÷éóôïí äýï åðéëïãÝò ðñïò øÞöéóìá ( áíáãñÜøôå ìßá åðéëïãÞ êáé ðáôÞóôå ôï êïõìðß <i> ÐñïóèÞêç åðéëïãÞò </i>, åðáíáëáìâÜíïíôáò ôçí äéáäéêáóßá ãéá üóåò åðéëïãÝò åðéèõìåßôå ) êáé ôçí ÷ñïíéêÞ äéÜñêåéá äéåîáãùãÞò ôïõ äçìïøçößóìáôïò, ìå ôï 0 íá ïñßæåé ôï äß÷ùò ÷ñïíéêÜ üñéá ôïõ äçìïøçößóìáôïò. Ï áñéèìüò ôùí åðéëïãþí ðåñéïñßæåôáé óå üñéï ðïõ Ý÷åé ïñßóåé ï äéá÷åéñéóôÞò.");
! $faq[] = array("Ðþò ìðïñþ íá åðåîåñãáóèþ Þ íá äéáãñÜøù Ýíá äçìïøÞöéóìá;", "¼ðùò êáé ìå ôá ìçíýìáôá óáò, Ýôóé óõìâáßíåé êáé ìå ôá äçìïøçößóìáôá. Ìüíï ïé äçìéïõñãïß ôïõò Þ ï äéá÷åéñéóôÞò ìðïñïýí íá åðåîåñãáóèïýí äçìïøçößóìáôá. Ãéá íá ôï åðåîåñãáóèåßôå åðéëÝîôå ôï ðñþôï ìÞíõìá óå ìßá èåìáôéêÞ åíüôçôá ( Ýíá äçìïøÞöéóìá, åßíáé ðÜíôá óõíäåäåìÝíï ìå ôï ðñþôï ìÞíõìá óå ìßá È. Åíüôçôá ). ÅÜí äåí Ý÷åé óõììåôÜó÷åé êáíåßò óôçí øçöïöïñßá ôüôå ìðïñåßôå íá ôçí äéáãñÜøåôå Þ íá ôçí åðåîåñãáóèåßôå, åÜí üìùò Ý÷åôå Þäç äå÷èåß øÞöïõò ôüôå ìüíï ïé äéáìåóïëáâçôÝò êáé ïé äéá÷åéñéóôÝò ìðïñïýí íá ôï åðåîåñãáóèïýí Þ íá ôï äéáãñÜøïõí. Áõôü åìðïäßæåé ôçí ÷Üëêåõóç ôùí áðïôåëåóìÜôùí êáôÜ ôçí äéáäéêáóßá ôçò øçöïöïñßáò");
! $faq[] = array("Ãéáôß äåí Ý÷ù ðñüóâáóç óå ìéá Ä. ÓõæÞôçóç;", "ÌåñéêÝò Ä. ÓõæçôÞóåéò ðåñéïñßæïíôáé óå ïñéóìÝíá ìÝëç Þ ïìÜäåò ìåëþí. ºóùò ÷ñåéÜæåóôå åéäéêÞ åîïõóéïäüôçóç, ôçí ïðïßá ìüíï ï äéá÷åéñéóôÞò ìðïñåß íá ðáñÝ÷åé êáé ðñÝðåé íá åðéêïéíùíÞóåôå ìáæß ôïõ.");
! $faq[] = array("Ãéáôß äåí ìðïñþ íá ëÜâù ìÝñïò óå äçìïøÞöéóìá;", "Ìüíï ïé åããåãñáììÝíïé ÷ñÞóôåò ìðïñïýí íá óõììåôÜó÷ïõí óå ìéá øçöïöïñßá ( ãéá íá áðïöåýãåôáé ç íïèåßá ). ÅÜí åßóèå ìÝëïò êáé ðÜëé äåí ìðïñåßôå íá ëÜâåôå ìÝñïò óå øçöïöïñßá, ôüôå äåí Ý÷åôå äéêáéþìáôá ðñüóâáóçò ó' áõôÞ.");
!
!
! $faq[] = array("--","Ìïñöïðïßçóç êáé ôýðïé È. ÅíïôÞôùí");
! $faq[] = array("Ôé åßíáé ôï BBCode;", "Ôï BBCode åßíáé ìßá éäéáßôåñç åöáñìïãÞ ôçò HTML, ç ÷ñÞóç ôçò óôá ìçíýìáôá êáèïñßæåôáé áðü ôïí äéá÷åéñéóôÞ óôï óýíïëï, êáé áðü ôïí óõíôÜêôç åíüò ìçíýìáôïò êáôÜ âïýëçóç, êÜèå öïñÜ ðïõ óõíôÜóóåé Ýíá êåßìåíï. Ï êþäéêáò BBCode åßíáé ðáñüìïéïò ìå ôçí HTML, ïé åíôïëÝò (ðéíáêßäéá) ðåñéêëåßïíôáé óå áãêýëåò [ and ] áíôß ôçò ìïñöÞò < êáé > Êáé ðñïóöÝñåé ìåãáëýôåñï Ýëåã÷ï ôïõ ôé êáé ðþò áõôü èá åìöáíßæåôáé óôçí ïèüíç. Ðåñéóóüôåñåò ðëçñïöïñßåò ôïõ êþäéêá BBCode èá âñåßôå óôo êåßìåíï âïÞèåéáò ðïõ õðÜñ÷åé óôçí åðéëïãÞ ìïñöïðïßçóçò BBCode óôçí ïèüíç óýíôáîçò åíüò ìçíýìáôïò.");
! $faq[] = array("Ìðïñþ íá êÜíù ÷ñÞóç ôçò HTML?", "Áõôü åîáñôÜôáé áðü ôïí äéá÷åéñéóôÞ åÜí Ý÷åé åíåñãïðïßçóç áõôÞí ôçí äõíáôüôçôá. Ðáñ' üëá áõôÜ, óôçí ðåñßðôùóç áõôÞ, èá ìðïñÝóåôå íá ÷ñçóéìïðïéÞóåôå ïñéóìÝíá ìüíá tags, ðñïò áðïöõãÞí èåìÜôùí áóöÜëåéáò, êáé áñíçôéêÞò ðáñåìâïëÞò ôïõ êåéìÝíïõ óôçí óõíïëéêÞ ìïñöïðïßçóç ôçò ïèüíçò. Óå ðåñßðôùóç ðïõ ï äéá÷åéñéóôÞò Ý÷åé åíåñãÞ áõôÞí ôçí äõíáôüôçôá, ìðïñåßôå íá ôçí áðåíåñãïðïéåßôå êáôÜ âïýëçóç, êÜèå öïñÜ ðïõ óõíôÜóóåôå Ýíá ìÞíõìá óôçí áíôßóôïé÷ç ïèüíç.");
! $faq[] = array("Ôé åßíáé ôá Smileys;", "Ôá Smileys, Þ Emoticons åßíáé ìéêñÜ åéêïíßäéá ôá ïðïßá ÷ñçóéìïðïéïýíôáé ãéá íá áðåéêïíßóïõí (êáé íá åíéó÷ýóïõí ôïí ãñáðôü ëüãï) ôá óõíáéóèÞìáôá ìáò óå êÜèå ìÞíõìá., ð.÷. :) óçìáßíåé åõôõ÷éóìÝíïò, :( ëõðçìÝíïò, êëð. Ï ðëÞñçò êáôÜëïãïò ìå ôá emoticons åßíáé ïñáôüò ìÝóá áðü åðéëïãÞ óôçí öüñìá õðïâïëÞò ìçíýìáôïò. Ðñïóðáèåßôå íá ìçí êÜíåôå êáôÜ÷ñçóç ôùí smileys, äéüôé ìðïñåß íá êáôáóôÞóïõí ôçí áíÜñôçóç óáò ìç áíáãíþóéìç, ìå óõíÝðåéá ï äéá÷åéñéóôÞò íá áíáãêáóèåß íá óâÞóåé áõôü ôï ìÞíõìá.");
! $faq[] = array("Ìðïñþ íá áíáñôÞóù Åéêüíåò;", "Âåâáßùò êáé ìðïñåßôå íá óõìðåñéëÜâåôå Åéêüíåò óôï ìÞíõìá óáò. Ðáñ' üëá áõôÜ äåí õðÜñ÷åé ðñïò ôï ðáñüí ç äõíáôüôçôá ìåôáöüñôùóçò ôçò åéêüíáò óôï äéáêïìéóôÞ ìáò. Ï ìïíáäéêüò ôñüðïò åßíáé íá óõíäÝóåôå ìå ðáñáðïìðÞ ìßá åéêüíá ç ïðïßá âñßóêåôå åõñÝùò ðñïóâÜóéìï äéáêïìéóôÞ ð.÷. http://www.some-unknown-place.net/my-picture.gif. Äåí ìðïñåßôå íá óõíäÝóåôå åéêüíåò ïé ïðïßåò âñßóêïíôáé óôï õðïëïãéóôÞ óáò ôïðéêÜ, åêôüò êáé åÜí åßíáé êáé áõôüò åõñÝùò ðñïóâÜóéìïò äéáêïìéóôÞò, ïýôå åéêüíåò ïé ïðïßåò åßíáé áðïèçêåõìÝíåò ðßóù áðü ìç÷áíéóìïýò ðéóôïðïßçóçò ãíçóéüôçôáò ð.÷. hotmail Þ yahoo, äéáêïìéóôÝò ðïõ ðñïóôáôåýïíôáé ìå êùäéêïýò êëð. Ãéá íá åêèÝóåôå ôçí åéêüíá ÷ñçóéìïðïéÞóôå ôçí åíôïëÞ ôçò BBCode [img] Þ ôçí êáôÜëëçëç åíôïëÞ ôçò HTML (åÜí åßíáé åíåñãÞ).");
! $faq[] = array("Ôé åßíáé ïé Áíáêïéíþóåéò;", "Ïé Áíáêïéíþóåéò óõ÷íÜ ðåñéÝ÷ïõí óçìáíôéêÝò ðëçñïöïñßåò ïé ïðïßåò èá ðñÝðåé íá äéáâÜæïíôáé ôï óõíôïìüôåñï. Ïé Áíáêïéíþóåéò åìöáíßæïíôáé óôçí êïñõöÞ êÜèå È. Åíüôçôáò óôçí ïðïßá áíÞêïõí. Ç äõíáôüôçôá óýíôáîÞò ôïõò êáé ç áíáãíùóéìüôçôÜ ôïõò åîáñôÜôáé áðü ôçí áðáéôïýìåíç Üäåéá ç ïðïßá ïñßæåôå áðü ôïí äéá÷åéñéóôÞ.");
! $faq[] = array("Ôé åßíáé ïé Óçìåéþóåéò;", "Ïé Óçìåéþóåéò åìöáíßæïíôáé êÜôù áðü ôéò Áíáêïéíþóåéò óôçí È. Åíüôçôá êáé ìüíï óôçí ðñþôç óåëßäá. Åßíáé óõ÷íÜ ðïëý óçìáíôéêÝò êáé ðñÝðåé íá ôéò äéáâÜæåôå. ¼ðùò êáé ìå ôéò Áíáêïéíþóåéò, ï äéá÷åéñéóôÞò êáèïñßæåé ôéò Üäåéåò óýíôáîçò êáé áíÜãíùóçò ôùí Óçìåéþóåùí.");
! $faq[] = array("Ôé åßíáé ç êëåéäùìÝíç È.Åíüôçôá;", "Ôçí È. Åíüôçôá ôçí êëåéäþíïõí ïé äéá÷åéñéóôÝò Þ ïé äéáìåóïëáâçôÝò ôïõ óõóôÞìáôïò. Äåí ìðïñåßôå íá áíáñôÞóåôå áðÜíôçóç óå ìßá êëåéäùìÝíç È. Åíüôçôá êáèþò êáé ïé øçöïöïñßåò ëÞãïõí áõôüìáôá ìåôÜ ôï êëåßäùìá ôçò È. Åíüôçôáò. Áõôü ìðïñåß íá óõìâåß ãéá äéÜöïñïõò ëüãïõò.");
!
!
! $faq[] = array("--","Åðßðåäá ×ñçóôþí êáé ÏìÜäùí");
! $faq[] = array("Ôé åßíáé ïé äéá÷åéñéóôÝò;", "Ïé äéá÷åéñéóôÝò åßíáé ìÝëç, Ýñãï ôùí ïðïßùí åßíáé íá öñïíôßæïõí ôçí áðñüóêïðôç ëåéôïõñãßá üëçò ôçò Ä. ÓõæÞôçóçò. ÁõôÜ ôá ìÝëç Ý÷ïõí ôçí äõíáôüôçôá íá åðåîåñãÜæïíôáé, íá äéáãñÜöïõí, íá êëåéäþíïõí, íá äéá÷ùñßæïõí, ôéò áíáñôÞóåéò ðïõ äéáêéíïýíôáé óôçí Ä. ÓõæÞôçóç. Åðßóçò Ý÷ïõí êáé ðëÞñç äéêáéþìáôá äéáìåóïëáâçôÞ óå üëåò ôéò È. Åíüôçôåò.");
! $faq[] = array("Ôé åßíáé ïé ÄéáìåóïëáâçôÝò;", "Ïé ÄéáìåóïëáâçôÝò åßíáé ìÝëç (Þ ìßá ïìÜäá ìåëþí). ÁõôÜ ôá ìÝëç Ý÷ïõí ôçí äõíáôüôçôá íá åðåîåñãÜæïíôáé, íá äéáãñÜöïõí, íá êëåéäþíïõí, íá äéá÷ùñßæïõí, ôéò áíáñôÞóåéò ðïõ äéáêéíïýíôáé óôçí È. Åíüôçôá, óôçí ïðïßá åßíáé õðåýèõíïé. Ï âáóéêüò ôïõò ñüëïò åßíáé íá äéáôçñïýí ôçí È. Åíüôçôá êáèáñÞ áðü ðåñéå÷üìåíï ôï ïðïßï ðáñåêôñÝðåôáé áðü ôïõò ãåíéêïýò üñïõò ëåéôïõñãßáò ôçò Ä. ÓõæÞôçóçò.");
! $faq[] = array("Ôé åßíáé ïé ÏìÜäåò Ìåëþí;", "Ïé ïìÜäåò ìåëþí åßíáé Ýíáò ôñüðïò ìå ôïí ïðïßï ïé äéá÷åéñéóôÝò ïìáäïðïéïýí ôá äéêáéþìáôá ðïõ Ý÷ïõí äéáöïñåôéêÜ ìÝëç ôçò Ä. ÓõæÞôçóçò. ¸íá ìÝëïò ìðïñåß íá áíÞêåé óå ðåñéóóüôåñåò áðü ìßá ïìÜäåò ( áõôÞ åßíáé ìéá óçìáíôéêÞ äéáöïñÜ áðü Üëëá óõóôÞìáôá Ä. ÓõæÞôçóçò) êáé êÜèå ïìÜäá íá Ý÷åé äéáöïñåôéêÜ äéêáéþìáôá ðñüóâáóçò. ¸ôóé äéåõêïëýíåôáé ï äéá÷åéñéóôÞò óôï íá áðïäþóåé äéêáéþìáôá äéáìåóïëáâçôÞ óå ðïëëïýò ÷ñÞóôåò, íá åðéôñÝðåé ôçí ðñüóâáóç óå ìßá È. Åíüôçôá óå óõãêåêñéìÝíç ïìÜäá ìåëþí êëð.");
! $faq[] = array("Ðùò åããñÜöïìáé óå ìßá ïìÜäá Ìåëþí;", "Ãéá íá åããñáöåßôå óå ìéá ïìÜäá ìåëþí åðéëÝîôå ôï, <i> ÏìÜäåò ×ñçóôþí </i> óôçí åðéêåöáëßäá ôçò óåëßäáò (áíÜëïãá ìå ôçí ðåñéâïëÞ ôçò). Äåí åßíáé üëåò ïé ïìÜäåò áíïéêôÝò ãéá åããñáöÞ, ìåñéêÝò åßíáé êëåéóôÝò Þ áêüìá êáé êÜðïéåò ìðïñåß íá Ý÷ïõí ìÝëç õðü áðüêñõøç. ÅÜí ìéá ïìÜäá åßíáé áíïéêôÞ ìðïñåßôå íá æçôÞóåôå ôçí åããñáöÞ óáò ó' áõôÞ ðáôþíôáò ôï áíÜëïãï êïõìðß. Ôï áßôçìá óáò èá ôï åðåîåñãáóôåß ï äéáìåóïëáâçôÞò ôçò ïìÜäáò, êÜðïéåò öïñÝò æçôþíôáò óáò ôïõò ëüãïõò ôçò åðéèõìßáò óáò áõôÞò. Óå ðåñßðôùóç ðïõ áðïññéöèåß ôï áßôçìÜ óáò, óáò ðáñáêáëïýìå íá ìçí ðáñåíï÷ëåßôå ôïí äéáìåóïëáâçôÞ, óßãïõñá èá Ý÷åé ôïõò ëüãïõ ôïõ ãé' áõôü.");
! $faq[] = array("Ðùò ìðïñþ íá ãßíù ÄéáìåóïëáâçôÞò ïìÜäáò ÷ñçóôþí;", "Ïé ïìÜäåò ÷ñçóôþí äçìéïõñãïýíôáé áñ÷éêÜ áðü Ýíáí Äéá÷åéñéóôÞ, ïé ïðïßïé åðßóçò ïñßæïõí Ýíáí äéáìåóïëáâçôÞ. Åöüóïí åíäéáöÝñåóôå íá ãßíåôå ÄéáìåóïëáâçôÞò ðñÝðåé íá áðïôáèåßôå óôïí äéá÷åéñéóôÞ ôïõ óõóôÞìáôïò, óôÝëíïíôáò ôïõ Ýíá ìÞíõìá.");
!
!
! $faq[] = array("--","ÐñïóùðéêÜ Ìçíýìáôá");
! $faq[] = array("Äåí ìðïñþ íá óôåßëù Ðñïóùðéêü ÌÞíõìá!", "ÕðÜñ÷ïõí ôñåéò ëüãïé ãé' áõôü. Äåí åßóôå åããåãñáììÝíïò ÷ñÞóôçò Þ äåí åßóôå óõíäåäåìÝíïò, ï Äéá÷åéñéóôÞò Ý÷åé áðåíåñãïðïéÞóåé áõôÞí ôçí ëåéôïõñãßá ãéá ïëüêëçñç ôçí Ä. ÓõæÞôçóç, ç óáò óôÝñçóå ôï äéêáßùìá áõôÞò ôçò ëåéôïõñãßáò. ÅÜí óõìâáßíåé ôï ôåëåõôáßï ñùôÞóôå ôïí Äéá÷åéñéóôÞ ôïõò ëüãïõò ãéá ôïõò ïðïßïõò åíÞñãçóå Ýôóé.");
! $faq[] = array("ËáìâÜíù óõíÝ÷åéá áíåðéèýìçôá ÐñïóùðéêÜ Ìçíýìáôá!", "ÌåëëïíôéêÜ èá ðñïóôåèåß êáôÜëïãïò áíåðéèýìçôçò áëëçëïãñáößáò óôï óýóôçìá ðñïóùðéêþí ìçíõìÜôùí. Ðñïò ôï ðáñüí åíçìåñþóôå ôïí äéá÷åéñéóôÞ, ìüíï áõôüò Ý÷åé ôçí äõíáôüôçôá íá áðïôñÝøåé êÜôé ôÝôïéï.");
! $faq[] = array("¸ëáâá ðñïóâëçôéêü ìÞíõìá áðü Ýíá ìÝëïò ôçò Ä. ÓõæÞôçóçò!", "Ëõðïýìáóôå ãéá áõôü. Ôá ÷áñáêôçñéóôéêÜ ëåéôïõñãßáò ôùí ðñïóùðéêþí ìçíõìÜôùí óôï óýóôçìá ìáò ðåñéëáìâÜíïõí áóöáëéóôéêÝò äéêëåßäåò åíôïðéóìïý ôÝôïéïí ÷ñçóôþí. ÐñÝðåé íá áðïóôåßëåôå ôï ìÞíõìá ðïõ ëÜâáôå óôïí äéá÷åéñéóôÞ óõóôÞìáôïò, óõìðåñéëáìâÜíïíôáò ôéò åðéêåöáëßäåò (ïé ïðïßåò ðåñéëáìâÜíïõí ëåðôïìÝñåéåò ãéá ôïí áðïóôïëÝá). Ôüôå ìüíï ï äéá÷åéñéóôÞò èá ìðïñÝóåé íá áíáëÜâåé äñÜóç.");
!
! //
! // These entries should remain in all languages and for all modifications
! //
! $faq[] = array("--","ÈÝìáôá áíáöïñéêÜ ìå ôï phpBB 2");
! $faq[] = array("Ðïéïò åßíáé ï óõããñáöÝáò ôïõ ðñïãñÜììáôïò;", "Áõôü ôï ðñüãñáììá (÷ùñßò ôéò ðéèáíÝò åðåìâÜóåéò áðü ôñßôïí óôïí êþäéêá) äçìéïõñãÞèçêå, êáé åêäßäåôå õðü Üäåéá ÷ñÞóçò áðü ôçí <a href=\"http://www.phpbb.com/\" target=\"_blank\">phpBB ÏìÜäá</a>. Åêäßäåôå õðü ôçí Üäåéá GNU General Public Licence êáé äéáíÝìåôáé åëåýèåñá. Äåßôå óôçí ðáñáðïìðÞ ãéá ðåñéóóüôåñåò ëåðôïìÝñåéåò.");
! $faq[] = array("Ãéáôß äåí åßíáé äéáèÝóéìï ôï × ÷áñáêôçñéóôéêü;", "Áõôü ôï ðñüãñáììá äçìéïõñãÞèçêå êáé ç Üäåéá ÷ñÞóçò ôïõ áðïäüèçêå áðü ôçí ïìÜäá áíÜðôõîçò ëïãéóìéêïý phpBB. ÅÜí íïìßæåôå üôé ðñÝðåé íá ðñïóôåèåß êÜðïéï ÷áñáêôçñéóôéêü, åðéóêåöèåßôå ôéò åðßóçìåò óåëßäåò ôçò ïìÜäáò áíÜðôõîçò. Óáò ðáñáêáëïýìå íá ìçí óôÝëíåôå ôéò ðñïôÜóåéò óáò áð' åõèåßáò óôçí ïìÜäá, áëëÜ ÷ñçóéìïðïéÞóôå ôï åéäéêü ðåäßï óôï sourceforge. ÄéáâÜóôå óôçí Ä. ÓõæÞôçóç ôçò ïìÜäáò ìáò ãéá ôï ðïéá åßíáé ç èÝóç ìáò ðÜíù ó' áõôÜ ôá íÝá ÷áñáêôçñéóôéêÜ êáé áêïëïõèÞóôå ôçí äéáäéêáóßá ðïõ óáò ðñïôåßíïõìå.");
! $faq[] = array("Ìå ðïéüí èá åðéêïéíùíÞóù ó÷åôéêÜ ìå íïìéêÜ Þ èÝìáôá êáôÜ÷ñçóçò ðÜíù óôï óýóôçìá;", "ÐñÝðåé íá åðéêïéíùíÞóåôå ìå ôïí äéá÷åéñéóôÞ ôïõ óõóôÞìáôïò. ÅÜí äåí ìðïñåßôå ãéá ïðïéïíäÞðïôå ëüãï íá ôïí âñåßôå, ôüôå ìðïñåßôå íá Ýñèåôå óå åðáöÞ ìå Ýíáí áðü ôïõò äéáìåóïëáâçôÝò ôçò Ä. ÓõæÞôçóçò êáé íá ôïõò ñùôÞóåôå. Áí äåí ëÜâåôå áðÜíôçóç, ðñÝðåé íá åðéêïéíùíÞóåôå ìå ôïí äéá÷åéñéóôÞ ôïõ Domain (áíáæçôÞóôå ôïí ìå ôï who is) óôï ïðïßï áíÞêåé ç Ä. ÓõæÞôçóç Þ, åÜí ôñÝ÷åé óå åëåýèåñï óýóôçìá üðùò yahoo, free.fr, f2s.com êëð., ìå ôçí äéåýèõíóç Þ ôï ôìÞìá êáôá÷ñÞóåùí ôçò õðçñåóßáò áõôÞò. ÓçìåéùôÝïí üôé ç ïìÜäá áíÜðôõîçò phpBB äåí Ý÷åé êáíÝíáí Ýëåã÷ï êáé äåí ìðïñåß ìå êáíÝíáí ôñüðï íá èåùñçèåß õðåýèõíç ãéá ôï ðþò Þ ðïéïò ÷ñçóéìïðïéåß ôï óýóôçìá. Åßíáé Üóôï÷ï íá Ýñèåôå óå åðáöÞ ìáæß ìáò ãéá íïìéêÜ èÝìáôá ðïõ äåí ó÷åôßæïíôáé Üìåóá ìå ôçí ïìÜäá phpBB. ÅÜí áðïóôåßëåôå email óôçí phpBB ïìÜäá ãéá êÜðïéïí ôñßôï ðáñÜãïíôá ÷ñÞóçò ôïõ ðñïãñÜììáôïò èá ðñÝðåé íá ðåñéìÝíåôå ìßá áñíçôéêÞ Þ êáé êáìßá, áðÜíôçóç.");
!
! //
! // This ends the FAQ entries
! //
!
?>
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/Attic/lang_main.php,v
retrieving revision 1.5.2.2
retrieving revision 1.5.2.3
diff -C2 -r1.5.2.2 -r1.5.2.3
*** lang_main.php 5 May 2002 12:20:36 -0000 1.5.2.2
--- lang_main.php 20 Jun 2002 16:25:56 -0000 1.5.2.3
***************
*** 22,34 ****
//
// Translation by Alexandros Topalidis (arttor)
! // Email : ar...@ee...
//
- $lang['ENCODING'] = "iso-8859-7";
- $lang['DIRECTION'] = "ltr";
- $lang['LEFT'] = "left";
- $lang['RIGHT'] = "right";
- $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format
[...1935 lines suppressed...]
! $lang['General_Error'] = "Ãåíéêü ËÜèïò";
! $lang['Critical_Error'] = "Êñßóéìï ËÜèïò";
! $lang['An_error_occured'] = "ÐáñïõóéÜóèçêå ËÜèïò";
! $lang['A_critical_error'] = "ÐáñïõóéÜóèçêå Êñßóéìï ËÜèïò";
!
//
--- 988,998 ----
// specific failure on a page)
//
! $lang['Information'] = 'Ðëçñïöïñßåò';
! $lang['Critical_Information'] = 'Êñßóéìåò ðëçñïöïñßåò';
+ $lang['General_Error'] = 'Ãåíéêü ËÜèïò';
+ $lang['Critical_Error'] = 'Êñßóéìï ËÜèïò';
+ $lang['An_error_occured'] = 'ÐáñïõóéÜóèçêå ËÜèïò';
+ $lang['A_critical_error'] = 'ÐáñïõóéÜóèçêå Êñßóéìï ËÜèïò';
//
...
[truncated message content] |
|
From: Paul S. O. <ps...@us...> - 2002-06-20 16:26:00
|
Update of /cvsroot/phpbb/phpBB2/language/lang_hungarian
In directory usw-pr-cvs1:/tmp/cvs-serv26928/language/lang_hungarian
Modified Files:
Tag: phpBB-2_0_0
lang_admin.php lang_main.php
Log Message:
More commits that I thought I'd made ... lang packs on SF are same as these
Index: lang_admin.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/Attic/lang_admin.php,v
retrieving revision 1.5
retrieving revision 1.5.2.1
diff -C2 -r1.5 -r1.5.2.1
*** lang_admin.php 4 Mar 2002 17:53:41 -0000 1.5
--- lang_admin.php 20 Jun 2002 16:25:56 -0000 1.5.2.1
***************
*** 329,334 ****
$lang['Cookie_settings'] = "Cookie Beállítások";
$lang['Cookie_settings_explain'] = "Beállíthatja a böngészõknek küldött cookie-kat. A legtöbb esetben az alapbeállítások megfelelõek. Legyen körültekintõ, mert egy helytelen beállítás megakadályozhatja a felhasználók belépését.";
-
-
$lang['Cookie_domain'] = "Cookie domain";
$lang['Cookie_name'] = "Cookie neve";
--- 329,332 ----
***************
*** 473,476 ****
--- 471,475 ----
$lang['No_group_moderator'] = "Meg kell adnia egy moderátort ennek a csoportnak";
$lang['No_group_mode'] = "Meg kell adnia a csoport módját";
+ $lang['No_group_action'] = 'Meg kell adnia a tevékenységet';
$lang['delete_group_moderator'] = "Régi csoport moderátor törlése?";
$lang['delete_moderator_explain'] = "Ha megváltoztatja a csoport moderátorát, válassza ezt a lehetõséget a régi moderátor csoporttagságának megszûntetéséhez. Egyébként a régi moderátor tagja marad a csoportnak.";
***************
*** 548,551 ****
--- 547,551 ----
$lang['Rank_added'] = "Rang sikeresen hozzáadva";
$lang['Rank_removed'] = "Rang sikeresen törölve";
+ $lang['No_update_ranks'] = 'A rang sikeresen törölve. Az érintett felhasználók beállításai nem lettek frissítve, így azokat kézzel be kell állítania';
$lang['Click_return_rankadmin'] = "Kattintson %side%s a Rang Adminisztrációhoz való visszatéréshez";
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/Attic/lang_main.php,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -C2 -r1.8 -r1.8.2.1
*** lang_main.php 6 Mar 2002 00:36:22 -0000 1.8
--- lang_main.php 20 Jun 2002 16:25:56 -0000 1.8.2.1
***************
*** 344,347 ****
--- 344,349 ----
$lang['To_many_poll_options'] = "Túl sok választási lehetõséget adott meg";
$lang['Post_has_no_poll'] = "Ehhez a hozzászóláshoz nincs szavazat";
+ $lang['Already_voted'] = 'Már szavazott ebben a témában';
+ $lang['No_vote_option'] = 'Ki kell választania egy válaszlehetõséget szavazásnál';
$lang['Add_poll'] = "Új szavazás";
***************
*** 439,442 ****
--- 441,453 ----
$lang['You_no_new_pm'] = "Nincs új privát üzenete";
+ $lang['Unread_message'] = 'Olvasatlan üzenet';
+ $lang['Read_message'] = 'Olvasott üzenet';
+
+ $lang['Read_pm'] = 'Üzenet elolvasása';
+ $lang['Post_new_pm'] = 'Új üzenet küldése';
+ $lang['Post_reply_pm'] = 'Üzenet megválaszolása';
+ $lang['Post_quote_pm'] = 'Üzenet idézése';
+ $lang['Edit_pm'] = 'Üzenet szerkesztése';
+
$lang['Inbox'] = "Beérkezett üzenetek";
$lang['Outbox'] = "Kimenõ üzenetek";
***************
*** 619,622 ****
--- 630,634 ----
$lang['Account_active_admin'] = " Az azonosító aktiválva lett.";
$lang['Reactivate'] = "Aktiválja újra az azonosítóját!";
+ $lang['Already_activated'] = 'Már aktiválta az azonosítóját!';
$lang['COPPA'] = "Az azonosító elkészült, de engedélyeztetni kell, tekintse meg a leveleit a további információkért.";
***************
*** 880,946 ****
$lang['All_times'] = "Idõzóna: %s"; // eg. All times are GMT - 12 Hours (times from next block)
! $lang['-12'] = "GMT - 12 óra";
! $lang['-11'] = "GMT - 11 óra";
! $lang['-10'] = "HST (Hawaii)";
! $lang['-9'] = "GMT - 9 óra";
! $lang['-8'] = "PST (U.S./Canada)";
! $lang['-7'] = "MST (U.S./Canada)";
! $lang['-6'] = "CST (U.S./Canada)";
! $lang['-5'] = "EST (U.S./Canada)";
! $lang['-4'] = "GMT - 4 óra";
! $lang['-3.5'] = "GMT - 3.5 óra";
! $lang['-3'] = "GMT - 3 óra";
! $lang['-2'] = "Mid-Atlantic";
! $lang['-1'] = "GMT - 1 óra";
! $lang['0'] = "GMT";
! $lang['1'] = "CET (Európa)";
! $lang['2'] = "EET (Európa)";
! $lang['3'] = "GMT + 3 óra";
! $lang['3.5'] = "GMT + 3.5 óra";
! $lang['4'] = "GMT + 4 óra";
! $lang['4.5'] = "GMT + 4.5 óra";
! $lang['5'] = "GMT + 5 óra";
! $lang['5.5'] = "GMT + 5.5 óra";
! $lang['6'] = "GMT + 6 óra";
! $lang['7'] = "GMT + 7 óra";
! $lang['8'] = "WST (Ausztrália)";
! $lang['9'] = "GMT + 9 óra";
! $lang['9.5'] = "CST (Ausztrália)";
! $lang['10'] = "EST (Ausztrália)";
! $lang['11'] = "GMT + 11 óra";
! $lang['12'] = "GMT + 12 óra";
// These are displayed in the timezone select box
! $lang['tz']['-12'] = "(GMT -12:00 óra) Eniwetok, Kwajalein";
! $lang['tz']['-11'] = "(GMT -11:00 óra) Midway Island, Samoa";
! $lang['tz']['-10'] = "(GMT -10:00 óra) Hawaii";
! $lang['tz']['-9'] = "(GMT -9:00 óra) Alaska";
! $lang['tz']['-8'] = "(GMT -8:00 óra) Pacific Time (US & Canada), Tijuana";
! $lang['tz']['-7'] = "(GMT -7:00 óra) Mountain Time (US & Canada), Arizona";
! $lang['tz']['-6'] = "(GMT -6:00 óra) Central Time (US & Canada), Mexico City";
! $lang['tz']['-5'] = "(GMT -5:00 óra) Eastern Time (US & Canada), Bogota, Lima, Quito";
! $lang['tz']['-4'] = "(GMT -4:00 óra) Atlantic Time (Canada), Caracas, La Paz";
! $lang['tz']['-3.5'] = "(GMT -3:30 óra) Newfoundland";
! $lang['tz']['-3'] = "(GMT -3:00 óra) Brassila, Buenos Aires, Georgetown, Falkland Is";
! $lang['tz']['-2'] = "(GMT -2:00 óra) Mid-Atlantic, Ascension Is., St. Helena";
! $lang['tz']['-1'] = "(GMT -1:00 óra) Azores, Cape Verde Islands";
! $lang['tz']['0'] = "(GMT) Casablanca, Dublin, Edinburgh, London, Lisbon, Monrovia";
! $lang['tz']['1'] = "(GMT +1:00 óra) Amsterdam, Berlin, Brussels, Budapest, Madrid, Paris, Rome";
! $lang['tz']['2'] = "(GMT +2:00 óra) Cairo, Helsinki, Kaliningrad, South Africa";
! $lang['tz']['3'] = "(GMT +3:00 óra) Baghdad, Riyadh, Moscow, Nairobi";
! $lang['tz']['3.5'] = "(GMT +3:30 óra) Tehran";
! $lang['tz']['4'] = "(GMT +4:00 óra) Abu Dhabi, Baku, Muscat, Tbilisi";
! $lang['tz']['4.5'] = "(GMT +4:30 óra) Kabul";
! $lang['tz']['5'] = "(GMT +5:00 óra) Ekaterinburg, Islamabad, Karachi, Tashkent";
! $lang['tz']['5.5'] = "(GMT +5:30 óra) Bombay, Calcutta, Madras, New Delhi";
! $lang['tz']['6'] = "(GMT +6:00 óra) Almaty, Colombo, Dhaka, Novosibirsk";
! $lang['tz']['6.5'] = "(GMT +6:30 óra) Rangoon";
! $lang['tz']['7'] = "(GMT +7:00 óra) Bangkok, Hanoi, Jakarta";
! $lang['tz']['8'] = "(GMT +8:00 óra) Beijing, Hong Kong, Perth, Singapore, Taipei";
! $lang['tz']['9'] = "(GMT +9:00 óra) Osaka, Sapporo, Seoul, Tokyo, Yakutsk";
! $lang['tz']['9.5'] = "(GMT +9:30 óra) Adelaide, Darwin";
! $lang['tz']['10'] = "(GMT +10:00 óra) Canberra, Guam, Melbourne, Sydney, Vladivostok";
! $lang['tz']['11'] = "(GMT +11:00 óra) Magadan, New Caledonia, Solomon Islands";
! $lang['tz']['12'] = "(GMT +12:00 óra) Auckland, Wellington, Fiji, Marshall Island";
$lang['datetime']['Sunday'] = "Vasárnap";
--- 892,959 ----
$lang['All_times'] = "Idõzóna: %s"; // eg. All times are GMT - 12 Hours (times from next block)
! $lang['-12'] = 'GMT - 12 Óra';
! $lang['-11'] = 'GMT - 11 Óra';
! $lang['-10'] = 'GMT - 10 Óra';
! $lang['-9'] = 'GMT - 9 Óra';
! $lang['-8'] = 'GMT - 8 Óra';
! $lang['-7'] = 'GMT - 7 Óra';
! $lang['-6'] = 'GMT - 6 Óra';
! $lang['-5'] = 'GMT - 5 Óra';
! $lang['-4'] = 'GMT - 4 Óra';
! $lang['-3.5'] = 'GMT - 3.5 Óra';
! $lang['-3'] = 'GMT - 3 Óra';
! $lang['-2'] = 'GMT - 2 Óra';
! $lang['-1'] = 'GMT - 1 Óra';
! $lang['0'] = 'GMT';
! $lang['1'] = 'GMT + 1 Óra';
! $lang['2'] = 'GMT + 2 Óra';
! $lang['3'] = 'GMT + 3 Óra';
! $lang['3.5'] = 'GMT + 3.5 Óra';
! $lang['4'] = 'GMT + 4 Óra';
! $lang['4.5'] = 'GMT + 4.5 Óra';
! $lang['5'] = 'GMT + 5 Óra';
! $lang['5.5'] = 'GMT + 5.5 Óra';
! $lang['6'] = 'GMT + 6 Óra';
! $lang['6.5'] = 'GMT + 6.5 Óra';
! $lang['7'] = 'GMT + 7 Óra';
! $lang['8'] = 'GMT + 8 Óra';
! $lang['9'] = 'GMT + 9 Óra';
! $lang['9.5'] = 'GMT + 9.5 Óra';
! $lang['10'] = 'GMT + 10 Óra';
! $lang['11'] = 'GMT + 11 Óra';
! $lang['12'] = 'GMT + 12 Óra';
// These are displayed in the timezone select box
! $lang['tz']['-12'] = 'GMT - 12 Óra';
! $lang['tz']['-11'] = 'GMT - 11 Óra';
! $lang['tz']['-10'] = 'GMT - 10 Óra';
! $lang['tz']['-9'] = 'GMT - 9 Óra';
! $lang['tz']['-8'] = 'GMT - 8 Óra';
! $lang['tz']['-7'] = 'GMT - 7 Óra';
! $lang['tz']['-6'] = 'GMT - 6 Óra';
! $lang['tz']['-5'] = 'GMT - 5 Óra';
! $lang['tz']['-4'] = 'GMT - 4 Óra';
! $lang['tz']['-3.5'] = 'GMT - 3.5 Óra';
! $lang['tz']['-3'] = 'GMT - 3 Óra';
! $lang['tz']['-2'] = 'GMT - 2 Óra';
! $lang['tz']['-1'] = 'GMT - 1 Óra';
! $lang['tz']['0'] = 'GMT';
! $lang['tz']['1'] = 'GMT + 1 Óra';
! $lang['tz']['2'] = 'GMT + 2 Óra';
! $lang['tz']['3'] = 'GMT + 3 Óra';
! $lang['tz']['3.5'] = 'GMT + 3.5 Óra';
! $lang['tz']['4'] = 'GMT + 4 Óra';
! $lang['tz']['4.5'] = 'GMT + 4.5 Óra';
! $lang['tz']['5'] = 'GMT + 5 Óra';
! $lang['tz']['5.5'] = 'GMT + 5.5 Óra';
! $lang['tz']['6'] = 'GMT + 6 Óra';
! $lang['tz']['6.5'] = 'GMT + 6.5 Óra';
! $lang['tz']['7'] = 'GMT + 7 Óra';
! $lang['tz']['8'] = 'GMT + 8 Óra';
! $lang['tz']['9'] = 'GMT + 9 Óra';
! $lang['tz']['9.5'] = 'GMT + 9.5 Óra';
! $lang['tz']['10'] = 'GMT + 10 Óra';
! $lang['tz']['11'] = 'GMT + 11 Óra';
! $lang['tz']['12'] = 'GMT + 12 Óra';
$lang['datetime']['Sunday'] = "Vasárnap";
***************
*** 999,1001 ****
// -------------------------------------------------
! ?>
\ No newline at end of file
--- 1012,1014 ----
// -------------------------------------------------
! ?>
\ No newline at end of file
|
|
From: Jonathan H. <the...@us...> - 2002-06-17 21:23:41
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv6478
Modified Files:
Tag: phpBB-2_0_0
install.php
Log Message:
"Fix" for "security" problem in install.php
Index: install.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/install.php,v
retrieving revision 1.41.2.2
retrieving revision 1.41.2.3
diff -C2 -r1.41.2.2 -r1.41.2.3
*** install.php 4 Jun 2002 04:14:17 -0000 1.41.2.2
--- install.php 17 Jun 2002 21:23:38 -0000 1.41.2.3
***************
*** 26,30 ****
$phpbb_root_path='./';
include($phpbb_root_path.'extension.inc');
! include($phpbb_root_dir . 'includes/functions_selects.'.$phpEx);
$userdata = array();
--- 26,30 ----
$phpbb_root_path='./';
include($phpbb_root_path.'extension.inc');
! include($phpbb_root_path . 'includes/functions_selects.'.$phpEx);
$userdata = array();
|
|
From: Jonathan H. <the...@us...> - 2002-06-17 21:18:40
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv3741 Modified Files: install.php Log Message: Fix for supposed "security" hole.... Index: install.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/install.php,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -r1.42 -r1.43 *** install.php 30 Apr 2002 17:56:50 -0000 1.42 --- install.php 17 Jun 2002 21:18:37 -0000 1.43 *************** *** 26,30 **** $phpbb_root_path='./'; include($phpbb_root_path.'extension.inc'); ! include($phpbb_root_dir . 'includes/functions_selects.'.$phpEx); $userdata = array(); --- 26,30 ---- $phpbb_root_path='./'; include($phpbb_root_path.'extension.inc'); ! include($phpbb_root_path . 'includes/functions_selects.'.$phpEx); $userdata = array(); |
|
From: Paul S. O. <ps...@us...> - 2002-06-14 16:35:22
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv14265/includes
Modified Files:
Tag: phpBB-2_0_0
sessions.php
Log Message:
Rotating IP workaround suggested by vHiker (this is already in the new 2.2 session object)
Index: sessions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/sessions.php,v
retrieving revision 1.58.2.2
retrieving revision 1.58.2.3
diff -C2 -r1.58.2.2 -r1.58.2.3
*** sessions.php 8 Apr 2002 13:11:58 -0000 1.58.2.2
--- sessions.php 14 Jun 2002 16:35:14 -0000 1.58.2.3
***************
*** 230,235 ****
FROM " . SESSIONS_TABLE . " s, " . USERS_TABLE . " u
WHERE s.session_id = '$session_id'
! AND u.user_id = s.session_user_id
! AND s.session_ip = '$user_ip'";
if ( !($result = $db->sql_query($sql)) )
{
--- 230,234 ----
FROM " . SESSIONS_TABLE . " s, " . USERS_TABLE . " u
WHERE s.session_id = '$session_id'
! AND u.user_id = s.session_user_id";
if ( !($result = $db->sql_query($sql)) )
{
***************
*** 244,292 ****
if ( isset($userdata['user_id']) )
{
- $SID = ( $sessionmethod == SESSION_METHOD_GET ) ? 'sid=' . $session_id : '';
-
//
! // Only update session DB a minute or so after last update
//
! if ( $current_time - $userdata['session_time'] > 60 )
{
! // || $userdata['user_session_page'] != $thispage_id
! $sql = "UPDATE " . SESSIONS_TABLE . "
! SET session_time = $current_time, session_page = $thispage_id
! WHERE session_id = '" . $userdata['session_id'] . "'
! AND session_ip = '$user_ip'";
! if ( !$db->sql_query($sql) )
! {
! message_die(CRITICAL_ERROR, 'Error updating sessions table', '', __LINE__, __FILE__, $sql);
! }
! if ( $userdata['user_id'] != ANONYMOUS )
{
! $sql = "UPDATE " . USERS_TABLE . "
! SET user_session_time = $current_time, user_session_page = $thispage_id
! WHERE user_id = " . $userdata['user_id'];
if ( !$db->sql_query($sql) )
{
message_die(CRITICAL_ERROR, 'Error updating sessions table', '', __LINE__, __FILE__, $sql);
}
- }
! //
! // Delete expired sessions
! //
! $expiry_time = $current_time - $board_config['session_length'];
! $sql = "DELETE FROM " . SESSIONS_TABLE . "
! WHERE session_time < $expiry_time
! AND session_id <> '$session_id'";
! if ( !$db->sql_query($sql) )
! {
! message_die(CRITICAL_ERROR, 'Error clearing sessions table', '', __LINE__, __FILE__, $sql);
}
! setcookie($cookiename . '_data', serialize($sessiondata), $current_time + 31536000, $cookiepath, $cookiedomain, $cookiesecure);
! setcookie($cookiename . '_sid', $session_id, 0, $cookiepath, $cookiedomain, $cookiesecure);
}
-
- return $userdata;
}
}
--- 243,300 ----
if ( isset($userdata['user_id']) )
{
//
! // Do not check IP assuming equivalence, if IPv4 we'll check only first 24
! // bits ... I've been told (by vHiker) this should alleviate problems with
! // load balanced et al proxies while retaining some reliance on IP security.
//
! $ip_check_s = substr($userdata['session_ip'], 0, 6);
! $ip_check_u = substr($user_ip, 0, 6);
!
! if ( $ip_check_s == $ip_check_u )
{
! $SID = ( $sessionmethod == SESSION_METHOD_GET ) ? 'sid=' . $session_id : '';
! //
! // Only update session DB a minute or so after last update
! //
! if ( $current_time - $userdata['session_time'] > 60 )
{
! $sql = "UPDATE " . SESSIONS_TABLE . "
! SET session_time = $current_time, session_page = $thispage_id
! WHERE session_id = '" . $userdata['session_id'] . "'";
if ( !$db->sql_query($sql) )
{
message_die(CRITICAL_ERROR, 'Error updating sessions table', '', __LINE__, __FILE__, $sql);
}
! if ( $userdata['user_id'] != ANONYMOUS )
! {
! $sql = "UPDATE " . USERS_TABLE . "
! SET user_session_time = $current_time, user_session_page = $thispage_id
! WHERE user_id = " . $userdata['user_id'];
! if ( !$db->sql_query($sql) )
! {
! message_die(CRITICAL_ERROR, 'Error updating sessions table', '', __LINE__, __FILE__, $sql);
! }
! }
!
! //
! // Delete expired sessions
! //
! $expiry_time = $current_time - $board_config['session_length'];
! $sql = "DELETE FROM " . SESSIONS_TABLE . "
! WHERE session_time < $expiry_time
! AND session_id <> '$session_id'";
! if ( !$db->sql_query($sql) )
! {
! message_die(CRITICAL_ERROR, 'Error clearing sessions table', '', __LINE__, __FILE__, $sql);
! }
!
! setcookie($cookiename . '_data', serialize($sessiondata), $current_time + 31536000, $cookiepath, $cookiedomain, $cookiesecure);
! setcookie($cookiename . '_sid', $session_id, 0, $cookiepath, $cookiedomain, $cookiesecure);
}
! return $userdata;
}
}
}
|
|
From: Doug K. <dou...@us...> - 2002-06-12 16:06:26
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv18213/admin
Modified Files:
Tag: phpBB-2_0_0
admin_smilies.php
Log Message:
Fixing bug 444
Index: admin_smilies.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_smilies.php,v
retrieving revision 1.22.2.2
retrieving revision 1.22.2.3
diff -C2 -r1.22.2.2 -r1.22.2.3
*** admin_smilies.php 12 May 2002 15:57:44 -0000 1.22.2.2
--- admin_smilies.php 12 Jun 2002 16:06:17 -0000 1.22.2.3
***************
*** 266,270 ****
}
! else if( isset($HTTP_POST_VARS['add']) )
{
//
--- 266,270 ----
}
! else if( isset($HTTP_POST_VARS['add']) || isset($HTTP_GET_VARS['add'] )
{
//
|
|
From: Doug K. <dou...@us...> - 2002-06-12 15:54:43
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv13269/admin
Modified Files:
Tag: phpBB-2_0_0
admin_users.php
Log Message:
Fixes bug #448....
Index: admin_users.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_users.php,v
retrieving revision 1.57.2.4
retrieving revision 1.57.2.5
diff -C2 -r1.57.2.4 -r1.57.2.5
*** admin_users.php 12 Jun 2002 05:33:53 -0000 1.57.2.4
--- admin_users.php 12 Jun 2002 15:54:39 -0000 1.57.2.5
***************
*** 1066,1070 ****
'L_WEBSITE' => $lang['Website'],
'L_AIM' => $lang['AIM'],
! 'L_LOCATION' => $lang['From'],
'L_OCCUPATION' => $lang['Occupation'],
'L_BOARD_LANGUAGE' => $lang['Board_lang'],
--- 1066,1070 ----
'L_WEBSITE' => $lang['Website'],
'L_AIM' => $lang['AIM'],
! 'L_LOCATION' => $lang['Location'],
'L_OCCUPATION' => $lang['Occupation'],
'L_BOARD_LANGUAGE' => $lang['Board_lang'],
|
|
From: Doug K. <dou...@us...> - 2002-06-12 05:33:56
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv21627/admin
Modified Files:
Tag: phpBB-2_0_0
admin_users.php
Log Message:
Ok, several things accomplished here...
1) Improvements to deletion of users in admin_users.
This includes bug 166 and Sourceforge tracker task #49374.
2) Two security holes were patched, both pointed out by
Nick Cleaton <nick at cleaton dot net>.
Thanks for letting us know, Nick!
That's about it for now, and it took almost all day. :P
Bye for now!
-Doug
Index: admin_users.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_users.php,v
retrieving revision 1.57.2.3
retrieving revision 1.57.2.4
diff -C2 -r1.57.2.3 -r1.57.2.4
*** admin_users.php 28 May 2002 18:30:45 -0000 1.57.2.3
--- admin_users.php 12 Jun 2002 05:33:53 -0000 1.57.2.4
***************
*** 526,530 ****
$sql = "UPDATE " . POSTS_TABLE . "
! SET poster_id = " . ANONYMOUS . ", post_username = '$username'
WHERE poster_id = $user_id";
if( !$db->sql_query($sql) )
--- 526,530 ----
$sql = "UPDATE " . POSTS_TABLE . "
! SET poster_id = " . DELETED . ", post_username = '$username'
WHERE poster_id = $user_id";
if( !$db->sql_query($sql) )
***************
*** 534,538 ****
$sql = "UPDATE " . TOPICS_TABLE . "
! SET topic_poster = " . ANONYMOUS . "
WHERE topic_poster = $user_id";
if( !$db->sql_query($sql) )
--- 534,538 ----
$sql = "UPDATE " . TOPICS_TABLE . "
! SET topic_poster = " . DELETED . "
WHERE topic_poster = $user_id";
if( !$db->sql_query($sql) )
***************
*** 540,543 ****
--- 540,577 ----
message_die(GENERAL_ERROR, 'Could not update topics for this user', '', __LINE__, __FILE__, $sql);
}
+
+ $sql = "UPDATE " . VOTE_USERS_TABLE . "
+ SET vote_user_id = " . DELETED . "
+ WHERE vote_user_id = $user_id";
+ if( !$db->sql_query($sql) )
+ {
+ message_die(GENERAL_ERROR, 'Could not update votes for this user', '', __LINE__, __FILE__, $sql);
+ }
+
+ $sql = "SELECT group_id
+ FROM " . GROUPS_TABLE . "
+ WHERE group_moderator = $user_id";
+ if( !($result = $db->sql_query($sql)) )
+ {
+ message_die(GENERAL_ERROR, 'Could not select groups where user was moderator', '', __LINE__, __FILE__, $sql);
+ }
+
+ while ( $row_group = $db->sql_fetchrow($result) )
+ {
+ $group_moderator[] = $row_group['group_id'];
+ }
+
+ if ( count($group_moderator) )
+ {
+ $update_moderator_id = implode(', ', $group_moderator);
+
+ $sql = "UPDATE " . GROUPS_TABLE . "
+ SET group_moderator = " . $userdata['user_id'] . "
+ WHERE group_moderator IN ($update_moderator_id)";
+ if( !$db->sql_query($sql) )
+ {
+ message_die(GENERAL_ERROR, 'Could not update group moderators', '', __LINE__, __FILE__, $sql);
+ }
+ }
$sql = "DELETE FROM " . USERS_TABLE . "
***************
*** 576,579 ****
--- 610,687 ----
}
+ $sql = "SELECT privmsgs_id
+ FROM " . PRIVMSGS_TABLE . "
+ WHERE ( ( privmsgs_from_userid = $user_id
+ AND privmsgs_type = " . PRIVMSGS_NEW_MAIL . " )
+ OR ( privmsgs_from_userid = $user_id
+ AND privmsgs_type = " . PRIVMSGS_SENT_MAIL . " )
+ OR ( privmsgs_to_userid = $user_id
+ AND privmsgs_type = " . PRIVMSGS_READ_MAIL . " )
+ OR ( privmsgs_to_userid = $user_id
+ AND privmsgs_type = " . PRIVMSGS_SAVED_IN_MAIL . " )
+ OR ( privmsgs_from_userid = $user_id
+ AND privmsgs_type = " . PRIVMSGS_SAVED_OUT_MAIL . " ) )";
+ if ( !($result = $db->sql_query($sql)) )
+ {
+ message_die(GENERAL_ERROR, 'Could not select all user\'s private messages', '', __LINE__, __FILE__, $sql);
+ }
+
+ //
+ // This little bit of code directly from the private messaging section.
+ // Thanks Paul!
+ //
+
+ while ( $row_privmsgs = $db->sql_fetchrow($result) )
+ {
+ $mark_list[] = $row_privmsgs['privmsgs_id'];
+ }
+
+ if ( count($mark_list) )
+ {
+ $delete_sql_id = implode(', ', $mark_list);
+
+ //
+ // We shouldn't need to worry about updating conters here...
+ // They are already gone!
+ //
+
+ $delete_text_sql = "DELETE FROM " . PRIVMSGS_TEXT_TABLE . "
+ WHERE privmsgs_text_id IN ($delete_sql_id)";
+ $delete_sql = "DELETE FROM " . PRIVMSGS_TABLE . "
+ WHERE privmsgs_id IN ($delete_sql_id)";
+
+ //
+ // Shouldn't need the switch statement here, either, as we just want
+ // to take out all of the private messages. This will not affect
+ // the other messages we want to keep; the ids are unique.
+ //
+
+ if ( !$db->sql_query($delete_sql) )
+ {
+ message_die(GENERAL_ERROR, 'Could not delete private message info', '', __LINE__, __FILE__, $delete_sql);
+ }
+
+ if ( !$db->sql_query($delete_text_sql) )
+ {
+ message_die(GENERAL_ERROR, 'Could not delete private message text', '', __LINE__, __FILE__, $delete_text_sql);
+ }
+ }
+
+ $sql = "UPDATE " . PRIVMSGS_TABLE . "
+ SET privmsgs_to_userid = " . DELETED . "
+ WHERE privmsgs_to_userid = $user_id";
+ if ( !$db->sql_query($sql) )
+ {
+ message_die(GENERAL_ERROR, 'Could not update private messages saved to the user', '', __LINE__, __FILE__, $sql);
+ }
+
+ $sql = "UPDATE " . PRIVMSGS_TABLE . "
+ SET privmsgs_from_userid = " . DELETED . "
+ WHERE privmsgs_from_userid = $user_id";
+ if ( !$db->sql_query($sql) )
+ {
+ message_die(GENERAL_ERROR, 'Could not update private messages saved from the user', '', __LINE__, __FILE__, $sql);
+ }
+
$message = $lang['User_deleted'];
***************
*** 1032,1036 ****
$template->pparse('body');
-
}
else
--- 1140,1143 ----
|
|
From: Doug K. <dou...@us...> - 2002-06-12 05:33:56
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv21627/includes
Modified Files:
Tag: phpBB-2_0_0
bbcode.php functions_post.php
Log Message:
Ok, several things accomplished here...
1) Improvements to deletion of users in admin_users.
This includes bug 166 and Sourceforge tracker task #49374.
2) Two security holes were patched, both pointed out by
Nick Cleaton <nick at cleaton dot net>.
Thanks for letting us know, Nick!
That's about it for now, and it took almost all day. :P
Bye for now!
-Doug
Index: bbcode.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/bbcode.php,v
retrieving revision 1.36.2.7
retrieving revision 1.36.2.8
diff -C2 -r1.36.2.7 -r1.36.2.8
*** bbcode.php 17 May 2002 18:22:34 -0000 1.36.2.7
--- bbcode.php 12 Jun 2002 05:33:54 -0000 1.36.2.8
***************
*** 283,287 ****
// [img]image_url_here[/img] code..
! $text = preg_replace("#\[img\](([a-z]+?)://([^ \"\n\r]+?))\[/img\]#si", "[img:$uid]\\1[/img:$uid]", $text);
// Remove our padding from the string..
--- 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..
Index: functions_post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions_post.php,v
retrieving revision 1.9.2.7
retrieving revision 1.9.2.8
diff -C2 -r1.9.2.7 -r1.9.2.8
*** functions_post.php 20 May 2002 00:21:38 -0000 1.9.2.7
--- functions_post.php 12 Jun 2002 05:33:54 -0000 1.9.2.8
***************
*** 78,82 ****
if ( preg_match('/^<\/?' . $match_tag . '\b/i', $hold_string) )
{
! $tagallowed = true;
}
}
--- 78,85 ----
if ( preg_match('/^<\/?' . $match_tag . '\b/i', $hold_string) )
{
! if ( !preg_match('/style[="](.*?)["]/i', $hold_string) )
! {
! $tagallowed = true;
! }
}
}
|
|
From: Paul S. O. <ps...@us...> - 2002-06-11 02:27:30
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv20354/includes
Modified Files:
auth_session.php
Log Message:
Various updates ... still preliminary, particularly auth
Index: auth_session.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/auth_session.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** auth_session.php 8 Jun 2002 23:55:00 -0000 1.2
--- auth_session.php 11 Jun 2002 02:27:26 -0000 1.3
***************
*** 26,34 ****
function start($update = true)
{
! global $db, $board_config, $user_ip;
! global $HTTP_SERVER_VARS, $HTTP_ENV_VARS, $HTTP_COOKIE_VARS, $HTTP_GET_VARS, $SID;
$current_time = time();
$session_browser = ( !empty($HTTP_SERVER_VARS['HTTP_USER_AGENT']) ) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : $HTTP_ENV_VARS['HTTP_USER_AGENT'];
if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) || isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data']) )
--- 26,38 ----
function start($update = true)
{
! global $SID, $db, $board_config, $user_ip;
! global $HTTP_SERVER_VARS, $HTTP_ENV_VARS, $HTTP_COOKIE_VARS, $HTTP_GET_VARS;
$current_time = time();
$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']) )
***************
*** 80,84 ****
// Did the session exist in the DB?
//
! if ( $update && isset($this->userdata['user_id']) )
{
//
--- 84,88 ----
// Did the session exist in the DB?
//
! if ( isset($this->userdata['user_id']) )
{
//
***************
*** 92,108 ****
if ( $ip_check_s[0].'.'.$ip_check_s[1].'.'.$ip_check_s[2] == $ip_check_u[0].'.'.$ip_check_u[1].'.'.$ip_check_u[2] )
{
! $SID .= '?sid=' . ( ( $sessionmethod == SESSION_METHOD_GET ) ? $session_id : '' );
//
// Only update session DB a minute or so after last update or if page changes
//
! if ( $current_time - $this->userdata['session_time'] > 60 || $this->userdata['session_page'] != $thispage_id )
{
- $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);
-
$sql = "UPDATE " . SESSIONS_TABLE . "
! SET session_time = $current_time, session_page = '" . $this_page . "#" . implode('#', $this_query) . "'
WHERE session_id = '" . $this->userdata['session_id'] . "'";
if ( !$db->sql_query($sql) )
--- 96,108 ----
if ( $ip_check_s[0].'.'.$ip_check_s[1].'.'.$ip_check_s[2] == $ip_check_u[0].'.'.$ip_check_u[1].'.'.$ip_check_u[2] )
{
! $SID = '?sid=' . ( ( $sessionmethod == SESSION_METHOD_GET ) ? $session_id : '' );
//
// Only update session DB a minute or so after last update or if page changes
//
! if ( ( $current_time - $this->userdata['session_time'] > 60 || $this->userdata['session_page'] != $this_page ) && $update )
{
$sql = "UPDATE " . SESSIONS_TABLE . "
! SET session_time = $current_time, session_page = '$this_page'
WHERE session_id = '" . $this->userdata['session_id'] . "'";
if ( !$db->sql_query($sql) )
***************
*** 135,174 ****
// using the cookie user_id if available to pull basic user prefs.
//
$user_id = ( isset($sessiondata['userid']) ) ? $sessiondata['userid'] : ANONYMOUS;
- $autologin = ( isset($HTTP_POST_VARS['autologin']) ) ? $password : '';
! if ( !($this->userdata = $this->create($user_id, $autologin)) )
{
! message_die(CRITICAL_ERROR, 'Error creating user session', '', __LINE__, __FILE__, $sql);
}
! $this->config();
!
! return $this->userdata;
! }
!
! function create($user_id, $user_password)
! {
! global $db, $board_config, $user_ip;
! global $HTTP_SERVER_VARS, $HTTP_ENV_VARS, $HTTP_COOKIE_VARS, $HTTP_GET_VARS, $SID;
!
! if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) || isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data']) )
{
! $sessiondata = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data']) ) ? unserialize(stripslashes($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data'])) : '';
! $session_id = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) ) ? $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid'] : '';
! $sessionmethod = SESSION_METHOD_COOKIE;
! }
! else
! {
! $session_data = '';
! $session_id = ( isset($HTTP_GET_VARS['sid']) ) ? $HTTP_GET_VARS['sid'] : '';
! $sessionmethod = SESSION_METHOD_GET;
}
-
- $current_time = time();
- $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);
$sql = "SELECT *
--- 135,158 ----
// using the cookie user_id if available to pull basic user prefs.
//
+ $autologin = ( isset($sessiondata['autologinid']) ) ? $sessiondata['autologinid'] : '';
$user_id = ( isset($sessiondata['userid']) ) ? $sessiondata['userid'] : ANONYMOUS;
! //
! // 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');
}
$sql = "SELECT *
***************
*** 182,185 ****
--- 166,178 ----
$this->userdata = $db->sql_fetchrow($result);
+ //
+ // Check autologin request, is it valid?
+ //
+ if ( $this->userdata['user_password'] != $autologin || !$this->userdata['user_active'] || $user_id == ANONYMOUS )
+ {
+ $autologin = '';
+ $this->userdata['user_id'] = $user_id = ANONYMOUS;
+ }
+
$user_ip_parts = explode('.', $user_ip);
***************
*** 211,237 ****
//
- // 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 ( $row['sessions'] >= $board_config['active_sessions'] )
- {
- message_die(GENERAL_MESSAGE, 'Board_unavailable', 'Information');
- }
-
- //
// Create or update the session
//
$sql = "UPDATE " . SESSIONS_TABLE . "
! SET session_user_id = $user_id, session_start = $current_time, session_time = $current_time, session_browser = '$session_browser', session_page = '" . $this_page . "#" . implode('#', $this_query) . "'
! WHERE session_id = '" . $session_id . "'";
if ( !$db->sql_query($sql) || !$db->sql_affectedrows() )
{
--- 204,212 ----
//
// Create or update the session
//
$sql = "UPDATE " . SESSIONS_TABLE . "
! SET session_user_id = $user_id, session_start = $current_time, session_time = $current_time, session_browser = '$session_browser', session_page = '$this_page'
! WHERE session_id = '$session_id'";
if ( !$db->sql_query($sql) || !$db->sql_affectedrows() )
{
***************
*** 240,244 ****
$sql = "INSERT INTO " . SESSIONS_TABLE . "
(session_id, session_user_id, session_start, session_time, session_ip, session_browser, session_page)
! VALUES ('$session_id', $user_id, $current_time, $current_time, '$user_ip', '$session_browser', '" . $this_page . "#" . implode('#', $this_query) . "')";
if ( !$db->sql_query($sql) )
{
--- 215,219 ----
$sql = "INSERT INTO " . SESSIONS_TABLE . "
(session_id, session_user_id, session_start, session_time, session_ip, session_browser, session_page)
! VALUES ('$session_id', $user_id, $current_time, $current_time, '$user_ip', '$session_browser', '$this_page')";
if ( !$db->sql_query($sql) )
{
***************
*** 247,253 ****
}
! $SID .= '?sid=' . ( ( $sessionmethod == SESSION_METHOD_GET ) ? $session_id : '' );
! $sessiondata['autologinid'] = ( $user_password && $sessionmethod == SESSION_METHOD_COOKIE ) ? $user_password : '';
$sessiondata['userid'] = $user_id;
--- 222,228 ----
}
! $SID = '?sid=' . ( ( $sessionmethod == SESSION_METHOD_GET ) ? $session_id : '' );
! $sessiondata['autologinid'] = ( $autologin && $user_id != ANONYMOUS ) ? $autologin : '';
$sessiondata['userid'] = $user_id;
***************
*** 257,263 ****
--- 232,281 ----
$this->userdata['session_id'] = $session_id;
+ $this->config();
+
return $this->userdata;
}
+ function destroy($userdata)
+ {
+ global $SID, $db, $board_config, $user_ip;
+ global $HTTP_SERVER_VARS, $HTTP_ENV_VARS, $HTTP_COOKIE_VARS, $HTTP_GET_VARS;
+
+ if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) )
+ {
+ $session_id = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) ) ? $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid'] : '';
+ }
+ else
+ {
+ $session_id = ( isset($HTTP_GET_VARS['sid']) ) ? $HTTP_GET_VARS['sid'] : '';
+ }
+
+ //
+ // Delete existing session, update last visit info first!
+ //
+ $sql = "UPDATE " . USERS_TABLE . "
+ SET user_lastvisit = " . $userdata['session_time'] . ", user_session_page = '" . $userdata['session_page'] . "'
+ WHERE user_id = " . $userdata['user_id'];
+ if ( !$db->sql_query($sql) )
+ {
+ message_die(CRITICAL_ERROR, 'Could not update user session info', '', __LINE__, __FILE__, $sql);
+ }
+
+ $sql = "DELETE FROM " . SESSIONS_TABLE . "
+ WHERE session_id = '" . $userdata['session_id'] . "'
+ AND session_user_id = " . $userdata['user_id'];
+ if ( !$db->sql_query($sql) )
+ {
+ message_die(CRITICAL_ERROR, 'Error removing user session', '', __LINE__, __FILE__, $sql);
+ }
+
+ $SID = '?sid=';
+
+ setcookie($board_config['cookie_name'] . '_data', '', $current_time - 31536000, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
+ setcookie($board_config['cookie_name'] . '_sid', '', $current_time - 31536000, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
+
+ return true;
+ }
+
function gc($current_time)
{
***************
*** 278,282 ****
{
$sql = "UPDATE " . USERS_TABLE . "
! SET user_lastvisit = " . $row['session_time'] . ", user_session_page = " . $row['session_page'] . "
WHERE user_id = " . $row['session_user_id'];
if ( !$db->sql_query($sql) )
--- 296,300 ----
{
$sql = "UPDATE " . USERS_TABLE . "
! SET user_lastvisit = " . $row['session_time'] . ", user_session_page = '" . $row['session_page'] . "'
WHERE user_id = " . $row['session_user_id'];
if ( !$db->sql_query($sql) )
***************
*** 313,357 ****
}
- function destroy($userdata)
- {
- global $db, $board_config, $user_ip;
- global $HTTP_SERVER_VARS, $HTTP_ENV_VARS, $HTTP_COOKIE_VARS, $HTTP_GET_VARS, $SID;
-
- if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) )
- {
- $session_id = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) ) ? $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid'] : '';
- }
- else
- {
- $session_id = ( isset($HTTP_GET_VARS['sid']) ) ? $HTTP_GET_VARS['sid'] : '';
- }
-
- //
- // Delete existing session, update last visit info first!
- //
- $sql = "UPDATE " . USERS_TABLE . "
- SET user_lastvisit = " . $userdata['session_time'] . ", user_session_page = " . $userdata['session_page'] . "
- WHERE user_id = " . $userdata['user_id'];
- if ( !$db->sql_query($sql) )
- {
- message_die(CRITICAL_ERROR, 'Could not update user session info', '', __LINE__, __FILE__, $sql);
- }
-
- $sql = "DELETE FROM " . SESSIONS_TABLE . "
- WHERE session_id = '" . $userdata['session_id'] . "'
- AND session_user_id = " . $userdata['user_id'];
- if ( !$db->sql_query($sql) )
- {
- message_die(CRITICAL_ERROR, 'Error removing user session', '', __LINE__, __FILE__, $sql);
- }
-
- $SID .= '?sid=';
-
- setcookie($board_config['cookie_name'] . '_data', '', $current_time - 31536000, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
- setcookie($board_config['cookie_name'] . '_sid', '', $current_time - 31536000, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
-
- return true;
- }
-
function config()
{
--- 331,334 ----
***************
*** 443,447 ****
//
! // Note this doesn't use the prefetch at present
//
class auth {
--- 420,427 ----
//
! // Note this doesn't use the prefetch at present and is very
! // incomplete ... purely for testing ... will be keeping my
! // eye of 'other products' to ensure these things don't
! // mysteriously appear elsewhere, think up your own solutions!
//
class auth {
***************
*** 501,505 ****
if ( !$forum_id )
{
! return $this->acl;
}
else if ( $auth_main && $auth_type )
--- 481,521 ----
if ( !$forum_id )
{
! if ( !$auth_type && is_array($this->acl) )
! {
! @reset($this->acl);
! while ( list(, $value1) = @each($this->acl) )
! {
! while ( list(, $value2) = @each($value1) )
! {
! while ( list(, $value3) = @each($value2) )
! {
! if ( $value3 )
! {
! return true;
! }
! }
! }
! }
! return false;
! }
! else if ( !$auth_main && is_array($this->acl) )
! {
! @reset($this->acl);
! while ( list(, $value1) = each($this->acl) )
! {
! while ( list(, $value2) = each($value1) )
! {
! if ( $value2[$auth_type] )
! {
! return true;
! }
! }
! }
! return false;
! }
! else
! {
! return $this->acl;
! }
}
else if ( $auth_main && $auth_type )
***************
*** 549,557 ****
//
! // Append $SID to a url. Borrowed from phplib and modified. 6
//
! // This routine is doomed I think, instead we just set a URL$SID for
! // appropriate URLs rather than this append stuff. For the time being
! // this change will break URL based session propagation
//
function append_sid($url, $non_html_amp = false)
--- 565,670 ----
//
! // Centralised login? May stay, may not ... depends if needed
! //
! function login($username, $password)
! {
! global $SID, $db, $board_config, $lang, $user_ip, $phpEx;
!
! $result = false;
!
! $sql = "SELECT user_id, username, user_password, user_email, user_active, user_level
! FROM " . USERS_TABLE . "
! WHERE username = '" . str_replace("\'", "''", $username) . "'";
! if ( !($result = $db->sql_query($sql)) )
! {
! message_die(GENERAL_ERROR, 'Error in obtaining userdata', '', __LINE__, __FILE__, $sql);
! }
!
! if ( $row = $db->sql_fetchrow($result) )
! {
! if ( $row['user_level'] != ADMIN && $board_config['board_disable'] )
! {
! header($header_location . "index.$phpEx$SID");
! exit;
! }
!
! if ( $board_config['ldap_enable'] && extension_loaded('ldap') )
! {
! if ( !($ldap_id = @ldap_connect($board_config['ldap_hostname'])) )
! {
! //
! // FINISH
! //
! @ldap_unbind($ldap_id);
! }
! }
! else
! {
! if ( md5($password) == $row['user_password'] && $row['user_active'] )
! {
! $autologin = ( isset($HTTP_POST_VARS['autologin']) ) ? md5($password) : '';
!
! $user_ip_parts = explode('.', $user_ip);
!
! $sql = "SELECT ban_ip, ban_userid, ban_email
! 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 = " . $row['user_id'];
! 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)) )
! {
! message_die(CRITICAL_ERROR, 'Could not obtain ban information', '', __LINE__, __FILE__, $sql);
! }
!
! if ( $ban_info = $db->sql_fetchrow($result) )
! {
! if ( $ban_info['ban_ip'] || $ban_info['ban_userid'] || $ban_info['ban_email'] )
! {
! message_die(CRITICAL_MESSAGE, 'You_been_banned');
! }
! }
!
! $session_browser = ( !empty($HTTP_SERVER_VARS['HTTP_USER_AGENT']) ) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : $HTTP_ENV_VARS['HTTP_USER_AGENT'];
!
! $current_time = time();
!
! //
! // Update the session
! //
! $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) )
! {
! message_die(GENERAL_ERROR, 'Could not update session post-login', '', __LINE__, __FILE__, $sql);
! }
!
! $sessiondata['autologinid'] = ( $autologin && $user_id != ANONYMOUS ) ? $autologin : '';
! $sessiondata['userid'] = $row['user_id'];
!
! setcookie($board_config['cookie_name'] . '_data', serialize($sessiondata), $current_time + 31536000, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
! setcookie($board_config['cookie_name'] . '_sid', $userdata['session_id'], 0, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
!
! $result = true;
! }
! }
! }
!
! 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)
|
|
From: Paul S. O. <ps...@us...> - 2002-06-10 01:52:51
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv7694/includes
Modified Files:
usercp_avatar.php
Log Message:
Updates in line with 2.0.1
Index: usercp_avatar.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_avatar.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** usercp_avatar.php 20 Apr 2002 00:22:29 -0000 1.9
--- usercp_avatar.php 10 Jun 2002 01:52:48 -0000 1.10
***************
*** 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;
--- 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;
***************
*** 163,167 ****
if ( $avatar_filesize <= $board_config['avatar_filesize'] && $avatar_filesize > 0 )
{
! preg_match("'image\/[x\-]*([a-z]+)'", $avatar_filetype, $avatar_filetype);
$avatar_filetype = $avatar_filetype[1];
}
--- 163,167 ----
if ( $avatar_filesize <= $board_config['avatar_filesize'] && $avatar_filesize > 0 )
{
! preg_match('#image\/[x\-]*([a-z]+)#', $avatar_filetype, $avatar_filetype);
$avatar_filetype = $avatar_filetype[1];
}
***************
*** 185,189 ****
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 != '' )
--- 185,189 ----
if ( $width <= $board_config['avatar_max_width'] && $height <= $board_config['avatar_max_height'] )
{
! $new_filename = uniqid($user_ip) . $imgtype;
if ( $mode == 'editprofile' && $current_type == USER_AVATAR_UPLOAD && $current_avatar != '' )
***************
*** 234,238 ****
}
! 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;
--- 234,238 ----
}
! function display_avatar_gallery($mode, &$category, &$user_id, &$email, &$current_email, &$coppa, &$username, &$email, &$new_password, &$cur_password, &$password_confirm, &$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;
***************
*** 310,314 ****
}
! $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" />';
--- 310,314 ----
}
! $params = array('coppa', 'user_id', 'username', 'email', 'current_email', 'cur_password', 'new_password', 'password_confirm', '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" />';
***************
*** 334,336 ****
}
! ?>
\ No newline at end of file
--- 334,336 ----
}
! ?>
|
|
From: Paul S. O. <ps...@us...> - 2002-06-10 01:52:19
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv7629/includes
Modified Files:
bbcode.php
Log Message:
Updates in line with 2.0.1
Index: bbcode.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/bbcode.php,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** bbcode.php 24 Apr 2002 15:00:33 -0000 1.38
--- bbcode.php 10 Jun 2002 01:52:16 -0000 1.39
***************
*** 484,487 ****
--- 484,493 ----
if ($mark_lowest_level && ($curr_nesting_depth == 1))
{
+ if ($open_tag[0] == '[code]')
+ {
+ $code_entities_match = array('#<#', '#>#', '#"#', '#:#', '#\[#', '#\]#', '#\(#', '#\)#', '#\{#', '#\}#');
+ $code_entities_replace = array('<', '>', '"', ':', '[', ']', '(', ')', '{', '}');
+ $between_tags = preg_replace($code_entities_match, $code_entities_replace, $between_tags);
+ }
$text = $before_start_tag . substr($start_tag, 0, $start_length - 1) . ":$curr_nesting_depth:$uid]";
$text .= $between_tags . substr($close_tag_new, 0, $close_tag_new_length - 1) . ":$curr_nesting_depth:$uid]";
***************
*** 489,501 ****
else
{
! if ($open_is_regexp)
{
! $text = $before_start_tag . $start_tag;
}
else
{
! $text = $before_start_tag . substr($start_tag, 0, $start_length - 1) . ":$uid]";
}
- $text .= $between_tags . substr($close_tag_new, 0, $close_tag_new_length - 1) . ":$uid]";
}
--- 495,515 ----
else
{
! if ($open_tag[0] == '[code]')
{
! $text = $before_start_tag . '[code]';
! $text .= $between_tags . '[/code]';
}
else
{
! if ($open_is_regexp)
! {
! $text = $before_start_tag . $start_tag;
! }
! else
! {
! $text = $before_start_tag . substr($start_tag, 0, $start_length - 1) . ":$uid]";
! }
! $text .= $between_tags . substr($close_tag_new, 0, $close_tag_new_length - 1) . ":$uid]";
}
}
***************
*** 607,611 ****
// 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]+?)://([^\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
***************
*** 615,619 ****
// 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\-.\~]+)((?:/[^\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.
|
|
From: Paul S. O. <ps...@us...> - 2002-06-10 01:51:37
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv7520/includes
Modified Files:
emailer.php
Log Message:
Updates in line with 2.0.1
Index: emailer.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/emailer.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** emailer.php 20 Apr 2002 00:22:28 -0000 1.16
--- emailer.php 10 Jun 2002 01:51:35 -0000 1.17
***************
*** 39,44 ****
$this->tpl_file = NULL;
$this->address = NULL;
! $this->msg = "";
! $this->mimeOut = "";
}
--- 39,44 ----
$this->tpl_file = NULL;
$this->address = NULL;
! $this->msg = '';
! $this->mimeOut = '';
}
***************
*** 48,56 ****
function reset()
{
! $this->tpl_file = "";
! $this->address = "";
! $this->msg = "";
! $this->memOut = "";
! $this->vars = "";
}
--- 48,56 ----
function reset()
{
! $this->tpl_file = '';
! $this->address = '';
! $this->msg = '';
! $this->memOut = '';
! $this->vars = '';
}
***************
*** 60,70 ****
function email_address($address)
{
-
- $success = true;
-
$this->address = '';
$this->address .= $address;
-
- return $success;
}
--- 60,65 ----
***************
*** 85,112 ****
}
! function use_template($template_file, $template_lang = "")
{
global $board_config, $phpbb_root_path;
! if( $template_lang == "" )
{
$template_lang = $board_config['default_lang'];
}
! $template_file = $phpbb_root_path . "language/lang_" . $template_lang . "/email/" . $template_file . ".tpl";
! if( !file_exists($template_file) )
{
! message_die(GENERAL_ERROR, "Couldn't find template file: $template_file", "", __LINE__, __FILE__);
}
! else
{
! $this->tpl_file = $template_file;
! if( !$this->load_msg() )
! {
! message_die(GENERAL_ERROR, "Couldn't load template file: $template_file", "", __LINE__, __FILE__);
! }
}
! return TRUE;
}
--- 80,104 ----
}
! function use_template($template_file, $template_lang = '')
{
global $board_config, $phpbb_root_path;
! if ( $template_lang == '' )
{
$template_lang = $board_config['default_lang'];
}
! $this->tpl_file = $phpbb_root_path . 'language/lang_' . $template_lang . '/email/' . $template_file . '.tpl';
! if ( !file_exists($this->tpl_file) )
{
! message_die(GENERAL_ERROR, 'Could not find email template file ' . $template_file, '', __LINE__, __FILE__);
}
!
! if ( !$this->load_msg() )
{
! message_die(GENERAL_ERROR, 'Could not load email template file ' . $template_file, '', __LINE__, __FILE__);
}
! return true;
}
***************
*** 116,148 ****
function load_msg()
{
! if ($this->tpl_file == NULL)
{
! message_die(GENERAL_ERROR, "No template file set", "", __LINE__, __FILE__);
}
! else
{
! if(!($fd = fopen($this->tpl_file, 'r')))
! {
! message_die(GENERAL_ERROR, "fopen failed opening template file", "", __LINE__, __FILE__);
! }
! else
! {
! $this->msg .= fread($fd, filesize($this->tpl_file));
! fclose($fd);
! }
}
! return TRUE;
}
function assign_vars($vars)
{
! if(empty($this->vars))
! {
! $this->vars = $vars;
! }
! else
! {
! $this->vars .= $vars;
! }
}
--- 108,130 ----
function load_msg()
{
! if ( $this->tpl_file == NULL )
{
! message_die(GENERAL_ERROR, 'No template file set', '', __LINE__, __FILE__);
}
!
! if ( !($fd = fopen($this->tpl_file, 'r')) )
{
! message_die(GENERAL_ERROR, 'Failed opening template file', '', __LINE__, __FILE__);
}
!
! $this->msg .= fread($fd, filesize($this->tpl_file));
! fclose($fd);
!
! return true;
}
function assign_vars($vars)
{
! $this->vars = ( empty($this->vars) ) ? $vars : $this->vars . $vars;
}
***************
*** 166,175 ****
//
$match = array();
! 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]);
! return TRUE;
}
--- 148,158 ----
//
$match = array();
! preg_match("/^(Subject:(.*?)[\r\n]+?)?(Charset:(.*?)[\r\n]+?)?(.*?)$/is", $this->msg, $match);
! $this->msg = ( isset($match[5]) ) ? trim($match[5]) : '';
$this->subject = ( $this->subject != '' ) ? $this->subject : trim($match[2]);
+ $this->encoding = ( trim($match[4]) != '' ) ? trim($match[4]) : 'iso-8859-1';
! return true;
}
***************
*** 181,223 ****
global $phpEx, $phpbb_root_path;
! if ($this->address == NULL)
{
! message_die(GENERAL_ERROR, "No email address set", "", __LINE__, __FILE__);
}
! else
{
! if(!$this->parse_email())
! {
! return FALSE;
! }
! if($this->use_smtp)
! {
! if(!defined('SMTP_INCLUDED'))
! {
! include($phpbb_root_path . "includes/smtp.".$phpEx);
! }
! if(!smtpmail($this->address, $this->subject, $this->msg, $this->extra_headers))
! {
! message_die(GENERAL_ERROR, "Sending via SMTP failed", "", __LINE__, __FILE__);
! }
! }
! else
{
! @mail($this->address, $this->subject, $this->msg, $this->extra_headers);
}
}
! return TRUE;
}
//
! // Attach files via MIME.
//
! function attachFile($filename, $mimetype="application/octet-stream", $szFromAddress, $szFilenameToDisplay)
{
$mime_boundary = "--==================_846811060==_";
! $this->mailMsg = "--".$mime_boundary."\nContent-Type: text/plain;\n\tcharset=\"iso-8859-1\"\n\n".$this->mailMsg;
if ($mime_filename)
--- 164,214 ----
global $phpEx, $phpbb_root_path;
! if ( $this->address == NULL )
{
! message_die(GENERAL_ERROR, 'No email address set', '', __LINE__, __FILE__);
}
!
! if ( !$this->parse_email() )
{
! return false;
! }
!
! //
! // Add date and encoding type
! //
! $universal_extra = "MIME-Version: 1.0\nContent-type: text/plain; charset=" . $this->encoding . "\nContent-transfer-encoding: 8bit\nDate: " . gmdate('D, d M Y H:i:s', time()) . " UT\n";
! $this->extra_headers = $universal_extra . $this->extra_headers;
!
! if ( $this->use_smtp )
! {
! if ( !defined('SMTP_INCLUDED') )
{
! include($phpbb_root_path . 'includes/smtp.' . $phpEx);
}
+
+ $result = smtpmail($this->address, $this->subject, $this->msg, $this->extra_headers);
+ }
+ else
+ {
+ $result = @mail($this->address, $this->subject, $this->msg, $this->extra_headers);
+ }
+
+ if ( !$result )
+ {
+ message_die(GENERAL_ERROR, 'Failed sending email', '', __LINE__, __FILE__);
}
! return true;
}
//
! // Attach files via MIME.
//
! function attachFile($filename, $mimetype = "application/octet-stream", $szFromAddress, $szFilenameToDisplay)
{
$mime_boundary = "--==================_846811060==_";
! $this->mailMsg = '--' . $mime_boundary . "\nContent-Type: text/plain;\n\tcharset=\"iso-8859-1\"\n\n" . $this->mailMsg;
if ($mime_filename)
***************
*** 235,243 ****
$this->mimeOut .= "Content-Disposition: attachment;\n\tfilename=\"$szFilenameToDisplay\"\n\n";
! if ($mimetype == "message/rfc822")
{
$this->mimeOut .= "From: ".$szFromAddress."\n";
$this->mimeOut .= "To: ".$this->emailAddress."\n";
! $this->mimeOut .= "Date: ".date("D, d M Y G:i:s ").$this->getTimeZoneInEmailFormat()."\n";
$this->mimeOut .= "Reply-To:".$szFromAddress."\n";
$this->mimeOut .= "Subject: ".$this->mailSubject."\n";
--- 226,234 ----
$this->mimeOut .= "Content-Disposition: attachment;\n\tfilename=\"$szFilenameToDisplay\"\n\n";
! if ( $mimetype == "message/rfc822" )
{
$this->mimeOut .= "From: ".$szFromAddress."\n";
$this->mimeOut .= "To: ".$this->emailAddress."\n";
! $this->mimeOut .= "Date: ".date("D, d M Y H:i:s") . " UT\n";
$this->mimeOut .= "Reply-To:".$szFromAddress."\n";
$this->mimeOut .= "Subject: ".$this->mailSubject."\n";
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english/email
In directory usw-pr-cvs1:/tmp/cvs-serv7457a/language/lang_english/email
Modified Files:
admin_activate.tpl admin_send_email.tpl
admin_welcome_activated.tpl admin_welcome_inactive.tpl
coppa_welcome_inactive.tpl group_added.tpl group_approved.tpl
group_request.tpl privmsg_notify.tpl profile_send_email.tpl
topic_notify.tpl user_activate.tpl user_activate_passwd.tpl
user_welcome.tpl user_welcome_inactive.tpl
Log Message:
Updates in line with 2.0.1
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/admin_activate.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** admin_activate.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- admin_activate.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: New user account
+ Charset: iso-8859-1
Hello,
Index: admin_send_email.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/admin_send_email.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** admin_send_email.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- admin_send_email.tpl 10 Jun 2002 01:51:11 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Charset: iso-8859-1
+
The following is an email sent to you by an administrator of "{SITENAME}". If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address:
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/admin_welcome_activated.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** admin_welcome_activated.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- admin_welcome_activated.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: Account Activated
+ Charset: iso-8859-1
Hello {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/admin_welcome_inactive.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** admin_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- admin_welcome_inactive.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: Welcome to {SITENAME} Forums
+ Charset: iso-8859-1
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** coppa_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.5
--- coppa_welcome_inactive.tpl 10 Jun 2002 01:51:11 -0000 1.6
***************
*** 1,3 ****
--- 1,4 ----
Subject: Welcome to {SITENAME} Forums
+ Charset: iso-8859-1
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/group_added.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** group_added.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- group_added.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: You have been added to this usergroup
+ Charset: iso-8859-1
Congratulations,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/group_approved.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** group_approved.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- group_approved.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: Your request has been approved
+ Charset: iso-8859-1
Congratulations,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/group_request.tpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** group_request.tpl 2 Mar 2002 18:13:23 -0000 1.5
--- group_request.tpl 10 Jun 2002 01:51:11 -0000 1.6
***************
*** 1,3 ****
--- 1,4 ----
Subject: A request to join your group has been made
+ Charset: iso-8859-1
Dear {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/privmsg_notify.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** privmsg_notify.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- privmsg_notify.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: New Private Message has arrived
+ Charset: iso-8859-1
Hello {USERNAME},
Index: profile_send_email.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/profile_send_email.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** profile_send_email.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- profile_send_email.tpl 10 Jun 2002 01:51:11 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Charset: iso-8859-1
+
Hello {TO_USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/topic_notify.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** topic_notify.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- topic_notify.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: Topic Reply Notification - {TOPIC_TITLE}
+ Charset: iso-8859-1
Hello {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/user_activate.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** user_activate.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- user_activate.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: Reactivate your account
+ Charset: iso-8859-1
Hello {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/user_activate_passwd.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** user_activate_passwd.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- user_activate_passwd.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: New password activation
+ Charset: iso-8859-1
Hello {USERNAME}
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/user_welcome.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** user_welcome.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- user_welcome.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: Welcome to {SITENAME} Forums
+ Charset: iso-8859-1
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/user_welcome_inactive.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** user_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.4
--- user_welcome_inactive.tpl 10 Jun 2002 01:51:11 -0000 1.5
***************
*** 1,3 ****
--- 1,4 ----
Subject: Welcome to {SITENAME} Forums
+ Charset: iso-8859-1
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-06-10 01:49:59
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv7228/includes
Modified Files:
usercp_activate.php
Log Message:
Fixes in line with 2.0.1
Index: usercp_activate.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_activate.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** usercp_activate.php 3 Apr 2002 20:14:47 -0000 1.6
--- usercp_activate.php 10 Jun 2002 01:49:57 -0000 1.7
***************
*** 9,13 ****
* $Id$
*
- *
***************************************************************************/
--- 9,12 ----
***************
*** 28,96 ****
}
! $sql = "SELECT user_id, user_email, user_newpasswd, user_lang
FROM " . USERS_TABLE . "
! WHERE user_actkey = '" . str_replace("\'", "''", $HTTP_GET_VARS['act_key']) . "'";
! if ( $result = $db->sql_query($sql) )
{
! if ( $row = $db->sql_fetchrow($result) )
{
! $sql_update_pass = ( $row['user_newpasswd'] != '' ) ? ", user_password = '" . str_replace("\'", "''", $row['user_newpasswd']) . "', user_newpasswd = ''" : "";
$sql = "UPDATE " . USERS_TABLE . "
SET user_active = 1, user_actkey = ''" . $sql_update_pass . "
! WHERE user_id = " . $row['user_id'];
! if ( $result = $db->sql_query($sql) )
{
! if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN && $sql_update_pass == '' )
! {
! include($phpbb_root_path . 'includes/emailer.'.$phpEx);
! $emailer = new emailer($board_config['smtp_delivery']);
!
! $email_headers = 'From: ' . $board_config['board_email'] . "\r\nReturn-Path: " . $board_config['board_email'] . "\r\n";
!
! $emailer->use_template('admin_welcome_activated', $row['user_lang']);
! $emailer->email_address($row['user_email']);
! $emailer->set_subject();//$lang['Account_activated_subject']
! $emailer->extra_headers($email_headers);
!
! $emailer->assign_vars(array(
! 'SITENAME' => $board_config['sitename'],
! 'USERNAME' => $username,
! 'PASSWORD' => $password_confirm,
! 'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $board_config['board_email_sig']))
! );
! $emailer->send();
! $emailer->reset();
!
! $template->assign_vars(array(
! 'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
! );
!
! message_die(GENERAL_MESSAGE, $lang['Account_active_admin']);
! }
! else
! {
! $template->assign_vars(array(
! 'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
! );
!
! $message = ( $sql_update_pass == '' ) ? $lang['Account_active'] : $lang['Password_activated'];
! message_die(GENERAL_MESSAGE, $message);
! }
}
else
{
! message_die(GENERAL_ERROR, 'Could not update users table', '', __LINE__, __FILE__, $sql_update);
}
}
else
{
! message_die(GENERAL_ERROR, $lang['Wrong_activation']); //wrongactiv
}
}
else
{
! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql);
}
! ?>
--- 27,106 ----
}
! $sql = "SELECT user_active, user_id, user_email, user_newpasswd, user_lang, user_actkey
FROM " . USERS_TABLE . "
! WHERE user_id = " . intval($HTTP_GET_VARS[POST_USERS_URL]);
! if ( !($result = $db->sql_query($sql)) )
! {
! message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql);
! }
!
! if ( $row = $db->sql_fetchrow($result) )
{
! if ( $row['user_active'] && $row['user_actkey'] == '' )
{
! $template->assign_vars(array(
! 'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
! );
!
! message_die(GENERAL_MESSAGE, $lang['Already_activated']);
! }
! else if ( $row['user_actkey'] == $HTTP_GET_VARS['act_key'] )
! {
! $sql_update_pass = ( $row['user_newpasswd'] != '' ) ? ", user_password = '" . str_replace("\'", "''", $row['user_newpasswd']) . "', user_newpasswd = ''" : '';
$sql = "UPDATE " . USERS_TABLE . "
SET user_active = 1, user_actkey = ''" . $sql_update_pass . "
! WHERE user_id = " . $row['user_id'];
! if ( !($result = $db->sql_query($sql)) )
! {
! message_die(GENERAL_ERROR, 'Could not update users table', '', __LINE__, __FILE__, $sql_update);
! }
!
! if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN && $sql_update_pass == '' )
{
! include($phpbb_root_path . 'includes/emailer.'.$phpEx);
! $emailer = new emailer($board_config['smtp_delivery']);
!
! $email_headers = 'From: ' . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\n";
!
! $emailer->use_template('admin_welcome_activated', $row['user_lang']);
! $emailer->email_address($row['user_email']);
! $emailer->set_subject();//$lang['Account_activated_subject']
! $emailer->extra_headers($email_headers);
!
! $emailer->assign_vars(array(
! 'SITENAME' => $board_config['sitename'],
! 'USERNAME' => $username,
! 'PASSWORD' => $password_confirm,
! 'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $board_config['board_email_sig']))
! );
! $emailer->send();
! $emailer->reset();
!
! $template->assign_vars(array(
! 'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
! );
!
! message_die(GENERAL_MESSAGE, $lang['Account_active_admin']);
}
else
{
! $template->assign_vars(array(
! 'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
! );
!
! $message = ( $sql_update_pass == '' ) ? $lang['Account_active'] : $lang['Password_activated'];
! message_die(GENERAL_MESSAGE, $message);
}
}
else
{
! message_die(GENERAL_MESSAGE, $lang['Wrong_activation']);
}
}
else
{
! message_die(GENERAL_MESSAGE, $lang['No_such_user']);
}
! ?>
\ No newline at end of file
|
|
From: Paul S. O. <ps...@us...> - 2002-06-10 01:49:52
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english In directory usw-pr-cvs1:/tmp/cvs-serv7184/language/lang_english Modified Files: lang_main.php Log Message: Various additions to come in line with 2.0.1 Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/lang_main.php,v retrieving revision 1.88 retrieving revision 1.89 diff -C2 -r1.88 -r1.89 *** lang_main.php 8 Jun 2002 22:03:30 -0000 1.88 --- lang_main.php 10 Jun 2002 01:49:48 -0000 1.89 *************** *** 21,45 **** // ! // The format of this file is: // ! // ---> $lang['message'] = 'text'; ! // ! // You should also try to set a locale and a character ! // encoding (plus direction). The encoding and direction ! // will be sent to the template. The locale may or may ! // not work, it's dependent on OS support and the syntax ! // varies ... give it your best guess! // - //setlocale(LC_ALL, 'en'); $lang['ENCODING'] = 'iso-8859-1'; ! $lang['DIRECTION'] = 'LTR'; ! $lang['LEFT'] = 'LEFT'; ! $lang['RIGHT'] = 'RIGHT'; $lang['DATE_FORMAT'] = 'd M Y'; // This should be changed to the default date format for your language, php date() format // ! // Common, these terms are used ! // extensively on several pages // $lang['Forum'] = 'Forum'; --- 21,39 ---- // ! // The format of this file is ---> $lang['message'] = 'text'; // ! // Note that DIRECTION, LEFT and RIGHT should _NOT_ be ! // translated! They indicate the direction of text and ! // are sent to the template // $lang['ENCODING'] = 'iso-8859-1'; ! $lang['DIRECTION'] = 'ltr'; // rtl for Arabic, Hebrew, etc. ! $lang['LEFT'] = 'left'; // right for Arabic, Hebrew, etc. ! $lang['RIGHT'] = 'right'; // left for Arabic, Hebrew, etc. $lang['DATE_FORMAT'] = 'd M Y'; // This should be changed to the default date format for your language, php date() format // ! // Common, these terms are used extensively on several pages // $lang['Forum'] = 'Forum'; *************** *** 341,344 **** --- 335,340 ---- $lang['To_many_poll_options'] = 'You have tried to enter too many poll options'; $lang['Post_has_no_poll'] = 'This post has no poll'; + $lang['Already_voted'] = 'You have already voted in this poll'; + $lang['No_vote_option'] = 'You must specify an option when voting'; $lang['Add_poll'] = 'Add a Poll'; *************** *** 435,438 **** --- 431,442 ---- $lang['You_new_pms'] = 'New private messages are waiting for you in your Inbox'; $lang['You_no_new_pm'] = 'No new private messages are waiting for you'; + $lang['Unread_message'] = 'Unread message'; + $lang['Read_message'] = 'Read message'; + + $lang['Read_pm'] = 'Read message'; + $lang['Post_new_pm'] = 'Post message'; + $lang['Post_reply_pm'] = 'Reply to message'; + $lang['Post_quote_pm'] = 'Quote message'; + $lang['Edit_pm'] = 'Edit message'; $lang['Inbox'] = 'Inbox'; *************** *** 616,619 **** --- 620,624 ---- $lang['Account_active_admin'] = 'The account has now been activated'; $lang['Reactivate'] = 'Reactivate your account!'; + $lang['Already_activated'] = 'You have already activated your account'; $lang['COPPA'] = 'Your account has been created but has to be approved, please check your email for details.'; *************** *** 879,896 **** $lang['-12'] = 'GMT - 12 Hours'; $lang['-11'] = 'GMT - 11 Hours'; ! $lang['-10'] = 'HST (Hawaii)'; $lang['-9'] = 'GMT - 9 Hours'; ! $lang['-8'] = 'PST (U.S./Canada)'; ! $lang['-7'] = 'MST (U.S./Canada)'; ! $lang['-6'] = 'CST (U.S./Canada)'; ! $lang['-5'] = 'EST (U.S./Canada)'; $lang['-4'] = 'GMT - 4 Hours'; $lang['-3.5'] = 'GMT - 3.5 Hours'; $lang['-3'] = 'GMT - 3 Hours'; ! $lang['-2'] = 'Mid-Atlantic'; $lang['-1'] = 'GMT - 1 Hours'; $lang['0'] = 'GMT'; ! $lang['1'] = 'CET (Europe)'; ! $lang['2'] = 'EET (Europe)'; $lang['3'] = 'GMT + 3 Hours'; $lang['3.5'] = 'GMT + 3.5 Hours'; --- 884,901 ---- $lang['-12'] = 'GMT - 12 Hours'; $lang['-11'] = 'GMT - 11 Hours'; ! $lang['-10'] = 'GMT - 10 Hours'; $lang['-9'] = 'GMT - 9 Hours'; ! $lang['-8'] = 'GMT - 8 Hours'; ! $lang['-7'] = 'GMT - 7 Hours'; ! $lang['-6'] = 'GMT - 6 Hours'; ! $lang['-5'] = 'GMT - 5 Hours'; $lang['-4'] = 'GMT - 4 Hours'; $lang['-3.5'] = 'GMT - 3.5 Hours'; $lang['-3'] = 'GMT - 3 Hours'; ! $lang['-2'] = 'GMT - 2 Hours'; $lang['-1'] = 'GMT - 1 Hours'; $lang['0'] = 'GMT'; ! $lang['1'] = 'GMT + 1 Hour'; ! $lang['2'] = 'GMT + 2 Hours'; $lang['3'] = 'GMT + 3 Hours'; $lang['3.5'] = 'GMT + 3.5 Hours'; *************** *** 902,944 **** $lang['6.5'] = 'GMT + 6.5 Hours'; $lang['7'] = 'GMT + 7 Hours'; ! $lang['8'] = 'WST (Australia)'; $lang['9'] = 'GMT + 9 Hours'; ! $lang['9.5'] = 'CST (Australia)'; ! $lang['10'] = 'EST (Australia)'; $lang['11'] = 'GMT + 11 Hours'; $lang['12'] = 'GMT + 12 Hours'; // These are displayed in the timezone select box ! $lang['tz']['-12'] = '(GMT -12:00 hours) Eniwetok, Kwajalein'; ! $lang['tz']['-11'] = '(GMT -11:00 hours) Midway Island, Samoa'; ! $lang['tz']['-10'] = '(GMT -10:00 hours) Hawaii'; ! $lang['tz']['-9'] = '(GMT -9:00 hours) Alaska'; ! $lang['tz']['-8'] = '(GMT -8:00 hours) Pacific Time (US & Canada), Tijuana'; ! $lang['tz']['-7'] = '(GMT -7:00 hours) Mountain Time (US & Canada), Arizona'; ! $lang['tz']['-6'] = '(GMT -6:00 hours) Central Time (US & Canada), Mexico City'; ! $lang['tz']['-5'] = '(GMT -5:00 hours) Eastern Time (US & Canada), Bogota, Lima, Quito'; ! $lang['tz']['-4'] = '(GMT -4:00 hours) Atlantic Time (Canada), Caracas, La Paz'; ! $lang['tz']['-3.5'] = '(GMT -3:30 hours) Newfoundland'; ! $lang['tz']['-3'] = '(GMT -3:00 hours) Brassila, Buenos Aires, Georgetown, Falkland Is'; ! $lang['tz']['-2'] = '(GMT -2:00 hours) Mid-Atlantic, Ascension Is., St. Helena'; ! $lang['tz']['-1'] = '(GMT -1:00 hours) Azores, Cape Verde Islands'; ! $lang['tz']['0'] = '(GMT) Casablanca, Dublin, Edinburgh, London, Lisbon, Monrovia'; ! $lang['tz']['1'] = '(GMT +1:00 hours) Amsterdam, Berlin, Brussels, Madrid, Paris, Rome'; ! $lang['tz']['2'] = '(GMT +2:00 hours) Cairo, Helsinki, Kaliningrad, South Africa'; ! $lang['tz']['3'] = '(GMT +3:00 hours) Baghdad, Riyadh, Moscow, Nairobi'; ! $lang['tz']['3.5'] = '(GMT +3:30 hours) Tehran'; ! $lang['tz']['4'] = '(GMT +4:00 hours) Abu Dhabi, Baku, Muscat, Tbilisi'; ! $lang['tz']['4.5'] = '(GMT +4:30 hours) Kabul'; ! $lang['tz']['5'] = '(GMT +5:00 hours) Ekaterinburg, Islamabad, Karachi, Tashkent'; ! $lang['tz']['5.5'] = '(GMT +5:30 hours) Bombay, Calcutta, Madras, New Delhi'; ! $lang['tz']['6'] = '(GMT +6:00 hours) Almaty, Colombo, Dhaka, Novosibirsk'; ! $lang['tz']['6.5'] = '(GMT +6:30 hours) Rangoon'; ! $lang['tz']['7'] = '(GMT +7:00 hours) Bangkok, Hanoi, Jakarta'; ! $lang['tz']['8'] = '(GMT +8:00 hours) Beijing, Hong Kong, Perth, Singapore, Taipei'; ! $lang['tz']['9'] = '(GMT +9:00 hours) Osaka, Sapporo, Seoul, Tokyo, Yakutsk'; ! $lang['tz']['9.5'] = '(GMT +9:30 hours) Adelaide, Darwin'; ! $lang['tz']['10'] = '(GMT +10:00 hours) Canberra, Guam, Melbourne, Sydney, Vladivostok'; ! $lang['tz']['11'] = '(GMT +11:00 hours) Magadan, New Caledonia, Solomon Islands'; ! $lang['tz']['12'] = '(GMT +12:00 hours) Auckland, Wellington, Fiji, Marshall Island'; $lang['datetime']['Sunday'] = 'Sunday'; --- 907,949 ---- $lang['6.5'] = 'GMT + 6.5 Hours'; $lang['7'] = 'GMT + 7 Hours'; ! $lang['8'] = 'GMT + 8 Hours'; $lang['9'] = 'GMT + 9 Hours'; ! $lang['9.5'] = 'GMT + 9.5 Hours'; ! $lang['10'] = 'GMT + 10 Hours'; $lang['11'] = 'GMT + 11 Hours'; $lang['12'] = 'GMT + 12 Hours'; // These are displayed in the timezone select box ! $lang['tz']['-12'] = 'GMT - 12 Hours'; ! $lang['tz']['-11'] = 'GMT - 11 Hours'; ! $lang['tz']['-10'] = 'GMT - 10 Hours'; ! $lang['tz']['-9'] = 'GMT - 9 Hours'; ! $lang['tz']['-8'] = 'GMT - 8 Hours'; ! $lang['tz']['-7'] = 'GMT - 7 Hours'; ! $lang['tz']['-6'] = 'GMT - 6 Hours'; ! $lang['tz']['-5'] = 'GMT - 5 Hours'; ! $lang['tz']['-4'] = 'GMT - 4 Hours'; ! $lang['tz']['-3.5'] = 'GMT - 3.5 Hours'; ! $lang['tz']['-3'] = 'GMT - 3 Hours'; ! $lang['tz']['-2'] = 'GMT - 2 Hours'; ! $lang['tz']['-1'] = 'GMT - 1 Hours'; ! $lang['tz']['0'] = 'GMT'; ! $lang['tz']['1'] = 'GMT + 1 Hour'; ! $lang['tz']['2'] = 'GMT + 2 Hours'; ! $lang['tz']['3'] = 'GMT + 3 Hours'; ! $lang['tz']['3.5'] = 'GMT + 3.5 Hours'; ! $lang['tz']['4'] = 'GMT + 4 Hours'; ! $lang['tz']['4.5'] = 'GMT + 4.5 Hours'; ! $lang['tz']['5'] = 'GMT + 5 Hours'; ! $lang['tz']['5.5'] = 'GMT + 5.5 Hours'; ! $lang['tz']['6'] = 'GMT + 6 Hours'; ! $lang['tz']['6.5'] = 'GMT + 6.5 Hours'; ! $lang['tz']['7'] = 'GMT + 7 Hours'; ! $lang['tz']['8'] = 'GMT + 8 Hours'; ! $lang['tz']['9'] = 'GMT + 9 Hours'; ! $lang['tz']['9.5'] = 'GMT + 9.5 Hours'; ! $lang['tz']['10'] = 'GMT + 10 Hours'; ! $lang['tz']['11'] = 'GMT + 11 Hours'; ! $lang['tz']['12'] = 'GMT + 12 Hours'; $lang['datetime']['Sunday'] = 'Sunday'; |
|
From: Paul S. O. <ps...@us...> - 2002-06-09 00:04:48
|
Update of /cvsroot/phpbb/phpBB2/db
In directory usw-pr-cvs1:/tmp/cvs-serv32736/db
Modified Files:
mysql.php
Log Message:
Possible updates and additions ...
Index: mysql.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/mysql.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** mysql.php 19 Mar 2002 01:07:36 -0000 1.16
--- mysql.php 9 Jun 2002 00:04:44 -0000 1.17
***************
*** 20,69 ****
***************************************************************************/
! if(!defined("SQL_LAYER"))
{
! define("SQL_LAYER","mysql");
class sql_db
{
-
var $db_connect_id;
var $query_result;
! var $row = array();
! var $rowset = array();
! var $num_queries = 0;
//
// Constructor
//
! function sql_db($sqlserver, $sqluser, $sqlpassword, $database, $persistency = true)
{
$this->persistency = $persistency;
$this->user = $sqluser;
$this->password = $sqlpassword;
! $this->server = $sqlserver;
$this->dbname = $database;
! if($this->persistency)
! {
! $this->db_connect_id = @mysql_pconnect($this->server, $this->user, $this->password);
! }
! else
! {
! $this->db_connect_id = @mysql_connect($this->server, $this->user, $this->password);
! }
! if($this->db_connect_id)
{
! if($database != "")
{
$this->dbname = $database;
! $dbselect = @mysql_select_db($this->dbname);
! if(!$dbselect)
{
@mysql_close($this->db_connect_id);
! $this->db_connect_id = $dbselect;
}
}
return $this->db_connect_id;
}
--- 20,63 ----
***************************************************************************/
! if(!defined('SQL_LAYER'))
{
! define('SQL_LAYER', 'mysql');
class sql_db
{
var $db_connect_id;
var $query_result;
! var $return_on_error;
//
// Constructor
//
! function sql_db($sqlserver, $sqluser, $sqlpassword, $database, $persistency = false)
{
+ $this->open_queries = array();
+ $this->num_queries = 0;
$this->persistency = $persistency;
$this->user = $sqluser;
$this->password = $sqlpassword;
! $this->server = $sqlserver;
! $this->port = 3306;
$this->dbname = $database;
! $this->db_connect_id = ( $this->persistency ) ? @mysql_pconnect($this->server, $this->user, $this->password) : @mysql_connect($this->server, $this->user, $this->password);
!
! if ( $this->db_connect_id )
{
! if ( $database != '' )
{
$this->dbname = $database;
! if ( !($dbselect = @mysql_select_db($this->dbname)) )
{
@mysql_close($this->db_connect_id);
! $this->db_connect_id = false;
}
}
+
return $this->db_connect_id;
}
***************
*** 79,90 ****
function sql_close()
{
! if($this->db_connect_id)
{
! if($this->query_result)
{
! @mysql_free_result($this->query_result);
}
! $result = @mysql_close($this->db_connect_id);
! return $result;
}
else
--- 73,87 ----
function sql_close()
{
! if ( $this->db_connect_id )
{
! if ( count($this->open_queries) )
{
! foreach($this->open_queries as $query_id)
! {
! @mysql_free_result($query_id);
! }
}
!
! return @mysql_close($this->db_connect_id);
}
else
***************
*** 94,135 ****
}
! //
! // Base query method
! //
! function sql_query($query = "", $transaction = FALSE)
{
! // Remove any pre-existing queries
! unset($this->query_result);
! if($query != "")
! {
! $this->num_queries++;
! $this->query_result = @mysql_query($query, $this->db_connect_id);
! }
! if($this->query_result)
! {
! unset($this->row[$this->query_result]);
! unset($this->rowset[$this->query_result]);
! return $this->query_result;
! }
! else
{
! return ( $transaction == END_TRANSACTION ) ? true : false;
}
}
//
! // Other query methods
//
! function sql_numrows($query_id = 0)
{
! if(!$query_id)
! {
! $query_id = $this->query_result;
! }
! if($query_id)
{
! $result = @mysql_num_rows($query_id);
! return $result;
}
else
--- 91,137 ----
}
! function sql_return_on_error($fail = false)
{
! $this->return_on_error = $fail;
! }
! function sql_num_queries()
! {
! return $this->num_queries;
! }
!
! function sql_transaction($status = BEGIN_TRANSACTION)
! {
! $result = true;
!
! switch ( $status )
{
! case BEGIN_TRANSACTION:
! // $result = mysql_query('BEGIN', $this->db_connect_id);
! break;
! case END_TRANSACTION:
! // $result = mysql_query('COMMIT', $this->db_connect_id);
! break;
! case ROLLBACK:
! // mysql_query('ROLLBACK', $this->db_connect_id);
! break;
}
+
+ return $result;
}
//
! // Base query method
//
! function sql_query($query = '', $transaction = false)
{
! if ( $query != '' )
{
! $this->query_result = false;
! $this->num_queries++;
!
! $this->query_result = @mysql_query($query, $this->db_connect_id);
!
! $this->open_queries[] = $this->query_result;
}
else
***************
*** 137,147 ****
return false;
}
}
! function sql_affectedrows()
{
! if($this->db_connect_id)
{
! $result = @mysql_affected_rows($this->db_connect_id);
! return $result;
}
else
--- 139,160 ----
return false;
}
+
+ return ( $this->query_result) ? $this->query_result : ( ( $transaction == END_TRANSACTION ) ? true : false );
}
!
! function sql_query_limit($query = '', $total, $offset, $transaction = false)
{
! if ( $query != '' )
{
! $this->query_result = false;
! $this->num_queries++;
!
! if ( isset($total) )
! {
! $query .= ' LIMIT ' . ( ( isset($offset) ) ? $offset . ', ' . $total : $total );
! }
!
! $this->query_result = @mysql_query($query, $this->db_connect_id);
! $this->open_queries[] = $this->query_result;
}
else
***************
*** 149,163 ****
return false;
}
}
! function sql_numfields($query_id = 0)
{
! if(!$query_id)
{
! $query_id = $this->query_result;
! }
! if($query_id)
! {
! $result = @mysql_num_fields($query_id);
! return $result;
}
else
--- 162,198 ----
return false;
}
+
+ return ( $this->query_result) ? $this->query_result : ( ( $transaction == END_TRANSACTION ) ? true : false );
}
!
! // Idea for this from Ikonboard
! function sql_query_array($query = '', $assoc_ary = false, $transaction = false)
{
! if ( is_array($assoc_ary) )
{
! if ( strpos(' ' . $query, 'INSERT') == 1 )
! {
! $fields = '';
! $values = '';
! foreach ( $assoc_ary as $key => $var )
! {
! $fields .= ( ( $fields != '' ) ? ', ' : '' ) . $key;
! $values .= ( ( $values != '' ) ? ', ' : '' ) . ( ( is_string($var) ) ? '\'' . str_replace('\'', '\'\'', $var) . '\'' : $var );
! }
!
! $query = $query . ' (' . $fields . ') VALUES (' . $values . ')';
! }
! else
! {
! $values = '';
! foreach ( $assoc_ary as $key => $var )
! {
! $values .= ( ( $values != '' ) ? ', ' : '' ) . $key . ' = ' . ( ( is_string($var) ) ? '\'' . str_replace('\'', '\'\'', $var) . '\'' : $var );
! }
!
! $query = preg_replace('/^(.*? SET )(.*?)$/is', '\1' . $values . ' \2', $query);
! }
!
! return $this->sql_query($query);
}
else
***************
*** 166,217 ****
}
}
! function sql_fieldname($offset, $query_id = 0)
{
! if(!$query_id)
{
$query_id = $this->query_result;
}
! if($query_id)
! {
! $result = @mysql_field_name($query_id, $offset);
! return $result;
! }
! else
! {
! return false;
! }
}
! function sql_fieldtype($offset, $query_id = 0)
{
! if(!$query_id)
{
$query_id = $this->query_result;
}
! if($query_id)
! {
! $result = @mysql_field_type($query_id, $offset);
! return $result;
! }
! else
! {
! return false;
! }
}
function sql_fetchrow($query_id = 0)
{
! if(!$query_id)
{
$query_id = $this->query_result;
}
! if($query_id)
! {
! $this->row[$query_id] = @mysql_fetch_array($query_id);
! return $this->row[$query_id];
! }
! else
! {
! return false;
! }
}
function sql_fetchrowset($query_id = 0)
{
--- 201,240 ----
}
}
!
! //
! // Other query methods
! //
! // NOTE :: Want to remove _ALL_ reliance on sql_numrows from core code ...
! // don't want this here by a middle Milestone
! function sql_numrows($query_id = false)
{
! if ( !$query_id )
{
$query_id = $this->query_result;
}
!
! return ( $query_id ) ? @mysql_num_rows($query_id) : false;
}
!
! function sql_affectedrows()
{
! if ( !$query_id )
{
$query_id = $this->query_result;
}
!
! return ( $query_id ) ? @mysql_affected_rows($query_id) : false;
}
+
function sql_fetchrow($query_id = 0)
{
! if ( !$query_id )
{
$query_id = $this->query_result;
}
!
! return ( $query_id ) ? @mysql_fetch_array($query_id) : false;
}
+
function sql_fetchrowset($query_id = 0)
{
***************
*** 235,238 ****
--- 258,262 ----
}
}
+
function sql_fetchfield($field, $rownum = -1, $query_id = 0)
{
***************
*** 275,328 ****
}
}
! function sql_rowseek($rownum, $query_id = 0){
! if(!$query_id)
{
$query_id = $this->query_result;
}
! if($query_id)
! {
! $result = @mysql_data_seek($query_id, $rownum);
! return $result;
! }
! else
! {
! return false;
! }
}
! function sql_nextid(){
! if($this->db_connect_id)
! {
! $result = @mysql_insert_id($this->db_connect_id);
! return $result;
! }
! else
! {
! return false;
! }
}
! function sql_freeresult($query_id = 0){
! if(!$query_id)
{
$query_id = $this->query_result;
}
! if ( $query_id )
! {
! unset($this->row[$query_id]);
! unset($this->rowset[$query_id]);
!
! @mysql_free_result($query_id);
!
! return true;
! }
! else
! {
! return false;
! }
}
! function sql_error($query_id = 0)
{
! $result["message"] = @mysql_error($this->db_connect_id);
! $result["code"] = @mysql_errno($this->db_connect_id);
return $result;
--- 299,332 ----
}
}
!
! function sql_rowseek($rownum, $query_id = 0)
! {
! if ( !$query_id )
{
$query_id = $this->query_result;
}
!
! return ( $query_id ) ? @mysql_data_seek($query_id, $rownum) : false;
}
!
! function sql_nextid()
! {
! return ( $this->db_connect_id ) ? @mysql_insert_id($this->db_connect_id) : false;;
}
!
! function sql_freeresult($query_id = false)
! {
! if ( !$query_id )
{
$query_id = $this->query_result;
}
! return ( $query_id ) ? @mysql_free_result($query_id) : false;
}
!
! function sql_error($query_id = false)
{
! $result['message'] = @mysql_error($this->db_connect_id);
! $result['code'] = @mysql_errno($this->db_connect_id);
return $result;
|