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-01-25 02:22:52
|
Update of /cvsroot/phpbb/phpBB2/includes In directory usw-pr-cvs1:/tmp/cvs-serv14212/includes Modified Files: sessions.php Log Message: doh, brain fart Index: sessions.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/includes/sessions.php,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -r1.48 -r1.49 *** sessions.php 2002/01/25 02:12:01 1.48 --- sessions.php 2002/01/25 02:22:48 1.49 *************** *** 395,399 **** } ! $sessiondata['userid'] = ANONYMOUS $serialised_cookiedata = serialize($sessiondata); --- 395,399 ---- } ! $sessiondata['userid'] = ANONYMOUS; $serialised_cookiedata = serialize($sessiondata); |
|
From: Paul S. O. <ps...@us...> - 2002-01-25 02:15:11
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv12631/admin
Modified Files:
admin_groups.php
Log Message:
Removed dependance on global defined $mode ...
Index: admin_groups.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_groups.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** admin_groups.php 2002/01/24 02:51:00 1.20
--- admin_groups.php 2002/01/25 02:15:08 1.21
***************
*** 45,48 ****
--- 45,60 ----
}
+ //
+ // Mode setting
+ //
+ if( isset($HTTP_POST_VARS['mode']) || isset($HTTP_GET_VARS['mode']) )
+ {
+ $mode = ( isset($HTTP_POST_VARS['mode']) ) ? $HTTP_POST_VARS['mode'] : $HTTP_GET_VARS['mode'];
+ }
+ else
+ {
+ $mode = "";
+ }
+
if( isset($HTTP_POST_VARS['edit']) || isset($HTTP_POST_VARS['new']) )
{
|
|
From: Paul S. O. <ps...@us...> - 2002-01-25 02:12:08
|
Update of /cvsroot/phpbb/phpBB2/includes In directory usw-pr-cvs1:/tmp/cvs-serv11874/includes Modified Files: sessions.php Log Message: Set a user_id of ANONYMOUS on logout Index: sessions.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/includes/sessions.php,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -r1.47 -r1.48 *** sessions.php 2001/12/21 16:02:15 1.47 --- sessions.php 2002/01/25 02:12:01 1.48 *************** *** 395,399 **** } ! unset($sessiondata['userid']); $serialised_cookiedata = serialize($sessiondata); --- 395,399 ---- } ! $sessiondata['userid'] = ANONYMOUS $serialised_cookiedata = serialize($sessiondata); |
|
From: Paul S. O. <ps...@us...> - 2002-01-25 02:01:26
|
Update of /cvsroot/phpbb/phpBB2/db
In directory usw-pr-cvs1:/tmp/cvs-serv9282/db
Modified Files:
msaccess.php
Log Message:
Removed odbc_error stuff since it doesn't work anyway
Index: msaccess.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/msaccess.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** msaccess.php 2002/01/25 01:59:34 1.4
--- msaccess.php 2002/01/25 02:01:24 1.5
***************
*** 356,363 ****
}
! function sql_error($query_id = 0)
{
! $error['code'] = odbc_error($this->db_connect_id);
! $error['message'] = odbc_errormsg($this->db_connect_id);
return $error;
--- 356,363 ----
}
! function sql_error()
{
! $error['code'] = "";//odbc_error($this->db_connect_id);
! $error['message'] = "Error";//odbc_errormsg($this->db_connect_id);
return $error;
|
|
From: Paul S. O. <ps...@us...> - 2002-01-25 01:59:40
|
Update of /cvsroot/phpbb/phpBB2/db
In directory usw-pr-cvs1:/tmp/cvs-serv8740/db
Modified Files:
msaccess.php
Log Message:
Re-added str_replace for LOWER -> LCASE in queries
Index: msaccess.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/msaccess.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** msaccess.php 2001/12/24 14:45:47 1.3
--- msaccess.php 2002/01/25 01:59:34 1.4
***************
*** 104,107 ****
--- 104,109 ----
}
+ $query = str_replace("LOWER(", "LCASE(", $query);
+
if( preg_match("/^SELECT(.*?)(LIMIT ([0-9]+)[, ]*([0-9]+)*)?$/s", $query, $limits) )
{
|
|
From: Paul S. O. <ps...@us...> - 2002-01-25 01:46:38
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv5386 Modified Files: search.php Log Message: Change ego search back to topic output rather than posts (as was till last update) .. even though it does say view own posts .. Index: search.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/search.php,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -r1.57 -r1.58 *** search.php 2002/01/25 00:48:40 1.57 --- search.php 2002/01/25 01:46:35 1.58 *************** *** 174,178 **** WHERE poster_id = " . $userdata['user_id']; ! $show_results = "posts"; $sortby = 0; $sortby_dir = "DESC"; --- 174,178 ---- WHERE poster_id = " . $userdata['user_id']; ! $show_results = "topics"; $sortby = 0; $sortby_dir = "DESC"; |
|
From: Paul S. O. <ps...@us...> - 2002-01-25 01:39:06
|
Update of /cvsroot/phpbb/phpBB2/language/lang_greek
In directory usw-pr-cvs1:/tmp/cvs-serv4043/language/lang_greek
Added Files:
index.htm lang_admin.php lang_faq.php lang_main.php
Log Message:
Initial version by arttor
--- NEW FILE ---
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-7">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>
--- NEW FILE ---
<?php
/***************************************************************************
* lang_admin.php [Greek]
* -------------------
* begin : Sat Dec 16 2000
* copyright : (C) 2001 The phpBB Group
* email : su...@ph...
*
* $Id: lang_admin.php,v 1.1 2002/01/25 01:39:03 psotfx Exp $
*
****************************************************************************/
/***************************************************************************
*
* 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...
//
//
// Modules, this replaces the keys used
// in the modules[][] arrays in each module file
//
$lang['General'] = "General Admin";
$lang['Users'] = "User Admin";
$lang['Groups'] = "Group Admin";
$lang['Forums'] = "Forum Admin";
$lang['Styles'] = "Styles Admin";
$lang['Configuration'] = "Configuration";
$lang['Permissions'] = "Permissions";
$lang['Manage'] = "Management";
$lang['Disallow'] = "Disallow names";
$lang['Prune'] = "Pruning";
$lang['Mass_Email'] = "Mass Email";
$lang['Ranks'] = "Ranks";
$lang['Smilies'] = "Smilies";
$lang['Ban_Management'] = "Ban Control";
$lang['Word_Censor'] = "Word Censors";
$lang['Export'] = "Export";
$lang['Create_new'] = "Create";
$lang['Add_new'] = "Add";
$lang['Backup_DB'] = "Backup Database";
$lang['Restore_DB'] = "Restore Database";
//
// Index
//
$lang['Admin'] = "Administration";
$lang['Not_admin'] = "You are not authorised to administer this board";
$lang['Welcome_phpBB'] = "Welcome to phpBB";
$lang['Admin_intro'] = "Thank you for choosing phpBB as your forum solution. This screen will give you a quick overview of all the various statistics of your board. You can get back to this page by clicking on the <u>Admin Index</u> link in the left pane. To return to the index of your board, click the phpBB logo also in the left pane. The other links on the left hand side of this screen will allow you to control every aspect of your forum experience, each screen will have instructions on how to use the tools.";
$lang['Main_index'] = "Forum Index";
$lang['Forum_stats'] = "Forum Statistics";
$lang['Admin_Index'] = "Admin Index";
$lang['Preview_forum'] = "Preview Forum";
$lang['Click_return_admin_index'] = "Click %sHere%s to return to the Admin Index";
$lang['Statistic'] = "Statistic";
$lang['Value'] = "Value";
$lang['Number_posts'] = "Number of posts";
$lang['Posts_per_day'] = "Posts per day";
$lang['Number_topics'] = "Number of topics";
$lang['Topics_per_day'] = "Topics per day";
$lang['Number_users'] = "Number of users";
$lang['Users_per_day'] = "Users per day";
$lang['Board_started'] = "Board started";
$lang['Avatar_dir_size'] = "Avatar directory size";
$lang['Database_size'] = "Database size";
$lang['Gzip_compression'] ="Gzip compression";
$lang['Not_available'] = "Not available";
$lang['ON'] = "ON"; // This is for GZip compression
$lang['OFF'] = "OFF";
//
// DB Utils
//
$lang['Database_Utilities'] = "Database Utilities";
$lang['Restore'] = "Restore";
$lang['Backup'] = "Backup";
$lang['Restore_explain'] = "This will perform a full restore of all phpBB tables from a saved file. If your server supports it you may upload a gzip compressed text file and it will automatically be decompressed. <b>WARNING</b> This will overwrite any existing data. The restore may take a long time to process please do not move from this page till it is complete.";
$lang['Backup_explain'] = "Here you can backup all your phpBB related data. If you have any additional custom tables in the same database with phpBB that you would like to back up as well please enter their names separated by commas in the Additional Tables textbox below. If your server supports it you may also gzip compress the file to reduce its size before download.";
$lang['Backup_options'] = "Backup options";
$lang['Start_backup'] = "Start Backup";
$lang['Full_backup'] = "Full backup";
$lang['Structure_backup'] = "Structure Only backup";
$lang['Data_backup'] = "Data only backup";
$lang['Additional_tables'] = "Additional tables";
$lang['Gzip_compress'] = "Gzip compress file";
$lang['Select_file'] = "Select a file";
$lang['Start_Restore'] = "Start Restore";
$lang['Restore_success'] = "The Database has been successfully restored.<br /><br />Your board should be back to the state it was when the backup was made.";
$lang['Backup_download'] = "Your download will start shortly please wait till it begins";
$lang['Backups_not_supported'] = "Sorry but database backups are not currently supported for your database system";
$lang['Restore_Error_uploading'] = "Error in uploading the backup file";
$lang['Restore_Error_filename'] = "Filename problem, please try an alternative file";
$lang['Restore_Error_decompress'] = "Cannot decompress a gzip file, please upload a plain text version";
$lang['Restore_Error_no_file'] = "No file was uploaded";
//
// Auth pages
//
$lang['Select_a_User'] = "Select a User";
$lang['Select_a_Group'] = "Select a Group";
$lang['Select_a_Forum'] = "Select a Forum";
$lang['Auth_Control_User'] = "User Permissions Control";
$lang['Auth_Control_Group'] = "Group Permissions Control";
$lang['Auth_Control_Forum'] = "Forum Permissions Control";
$lang['Look_up_User'] = "Look up User";
$lang['Look_up_Group'] = "Look up Group";
$lang['Look_up_Forum'] = "Look up Forum";
$lang['Group_auth_explain'] = "Here you can alter the permissions and moderator status assigned to each user group. Do not forget when changing group permissions that individual user permissions may still allow the user entry to forums, etc. You will be warned if this is the case.";
$lang['User_auth_explain'] = "Here you can alter the permissions and moderator status assigned to each individual user. Do not forget when changing user permissions that group permissions may still allow the user entry to forums, etc. You will be warned if this is the case.";
$lang['Forum_auth_explain'] = "Here you can alter the authorisation levels of each forum. You will have both a simple and advanced method for doing this, advanced offers greater control of each forum operation. Remember that changing the permission level of forums will affect which users can carry out the various operations within them.";
$lang['Simple_mode'] = "Simple Mode";
$lang['Advanced_mode'] = "Advanced Mode";
$lang['Moderator_status'] = "Moderator status";
$lang['Allowed_Access'] = "Allowed Access";
$lang['Disallowed_Access'] = "Disallowed Access";
$lang['Is_Moderator'] = "Is Moderator";
$lang['Not_Moderator'] = "Not Moderator";
$lang['Conflict_warning'] = "Authorisation Conflict Warning";
$lang['Conflict_access_userauth'] = "This user still has access rights to this forum via group membership. You may want to alter the group permissions or remove this user the group to fully prevent them having access rights. The groups granting rights (and the forums involved) are noted below.";
$lang['Conflict_mod_userauth'] = "This user still has moderator rights to this forum via group membership. You may want to alter the group permissions or remove this user the group to fully prevent them having moderator rights. The groups granting rights (and the forums involved) are noted below.";
$lang['Conflict_access_groupauth'] = "The following user (or users) still have access rights to this forum via their user permission settings. You may want to alter the user permissions to fully prevent them having access rights. The users granted rights (and the forums involved) are noted below.";
$lang['Conflict_mod_groupauth'] = "The following user (or users) still have moderator rights to this forum via their user permissions settings. You may want to alter the user permissions to fully prevent them having moderator rights. The users granted rights (and the forums involved) are noted below.";
$lang['Public'] = "Public";
$lang['Private'] = "Private";
$lang['Registered'] = "Registered";
$lang['Administrators'] = "Administrators";
$lang['Hidden'] = "Hidden";
$lang['View'] = "View";
$lang['Read'] = "Read";
$lang['Post'] = "Post";
$lang['Reply'] = "Reply";
$lang['Edit'] = "Edit";
$lang['Delete'] = "Delete";
$lang['Sticky'] = "Sticky";
$lang['Announce'] = "Announce";
$lang['Vote'] = "Vote";
$lang['Pollcreate'] = "Poll create";
$lang['Permissions'] = "Permissions";
$lang['Simple_Permission'] = "Simple Permission";
$lang['User_Level'] = "User Level";
$lang['Auth_User'] = "User";
$lang['Auth_Admin'] = "Administrator";
$lang['Group_memberships'] = "Usergroup memberships";
$lang['Usergroup_members'] = "This group has the following members";
$lang['Forum_auth_updated'] = "Forum permissions updated";
$lang['User_auth_updated'] = "User permissions updated";
$lang['Group_auth_updated'] = "Group permissions updated";
$lang['Auth_updated'] = "Permissions have been updated";
$lang['Click_return_userauth'] = "Click %sHere%s to return to User Permissions";
$lang['Click_return_groupauth'] = "Click %sHere%s to return to Group Permissions";
$lang['Click_return_forumauth'] = "Click %sHere%s to return to Forum Permissions";
//
// Banning
//
$lang['Ban_control'] = "Ban Control";
$lang['Ban_explain'] = "Here you can control the banning of users. You can achieve this by banning either or both of a specific user or an individual or range of IP addresses or hostnames. These methods prevent a user from even reaching the index page of your board. To prevent a user from registering under a different username you can also specify a banned email address. Please note that banning an email address alone will not prevent that user from being able to logon or post to your board, you should use one of the first two methods to achieve this.";
$lang['Ban_explain_warn'] = "Please note that entering a range of IP addresses results in all the addresses between the start and end being added to the banlist. Attempts will be made to minimise the number of addresses added to the database by introducing wildcards automatically where appropriate. If you really must enter a range try to keep it small or better yet state specific addresses.";
$lang['Select_username'] = "Select a Username";
$lang['Select_ip'] = "Select an IP";
$lang['Select_email'] = "Select an Email address";
$lang['Ban_username'] = "Ban one or more specific users";
$lang['Ban_username_explain'] = "You can ban multiple users in one go using the appropriate combination of mouse and keyboard for your computer and browser";
$lang['Ban_IP'] = "Ban one or more IP addresses or hostnames";
$lang['IP_hostname'] = "IP addresses or hostnames";
$lang['Ban_IP_explain'] = "To specify several different IP's or hostnames separate them with commas. To specify a range of IP addresses separate the start and end with a hyphen (-), to specify a wildcard use *";
$lang['Ban_email'] = "Ban one or more email addresses";
$lang['Ban_email_explain'] = "To specify more than one email address separate them with commas. To specify a wildcard username use *, for example *@hotmail.com";
$lang['Unban_username'] = "Un-ban one more specific users";
$lang['Unban_username_explain'] = "You can unban multiple users in one go using the appropriate combination of mouse and keyboard for your computer and browser";
$lang['Unban_IP'] = "Un-ban one or more IP addresses";
$lang['Unban_IP_explain'] = "You can unban multiple IP addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser";
$lang['Unban_email'] = "Un-ban one or more email addresses";
$lang['Unban_email_explain'] = "You can unban multiple email addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser";
$lang['No_banned_users'] = "No banned usernames";
$lang['No_banned_ip'] = "No banned IP addresses";
$lang['No_banned_email'] = "No banned email addresses";
$lang['Ban_update_sucessful'] = "The banlist has been updated successfully";
$lang['Click_return_banadmin'] = "Click %sHere%s to return to Ban Control";
//
// Configuration
//
$lang['General_Config'] = "General Configuration";
$lang['Config_explain'] = "The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side.";
$lang['Click_return_config'] = "Click %sHere%s to return to General Configuration";
$lang['General_settings'] = "General Board Settings";
$lang['Site_name'] = "Site name";
$lang['Site_desc'] = "Site description";
$lang['Board_disable'] = "Disable board";
$lang['Board_disable_explain'] = "This will make the board unavailable to users. Do not logout when you disable the board, you will not be able to log back in!";
$lang['Acct_activation'] = "Enable account activation";
$lang['Abilities_settings'] = "User and Forum Basic Settings";
$lang['Max_poll_options'] = "Max number of poll options";
$lang['Flood_Interval'] = "Flood Interval";
$lang['Flood_Interval_explain'] = "Number of seconds a user must wait between posts";
$lang['Board_email_form'] = "User email via board";
$lang['Board_email_form_explain'] = "Users send email to each other via this board";
$lang['Topics_per_page'] = "Topics Per Page";
$lang['Posts_per_page'] = "Posts Per Page";
$lang['Hot_threshold'] = "Posts for Popular Threshold";
$lang['Default_style'] = "Default Style";
$lang['Override_style'] = "Override user style";
$lang['Override_style_explain'] = "Replaces users style with the default";
$lang['Default_language'] = "Default Language";
$lang['Date_format'] = "Date Format";
$lang['System_timezone'] = "System Timezone";
$lang['Enable_gzip'] = "Enable GZip Compression";
$lang['Enable_prune'] = "Enable Forum Pruning";
$lang['Allow_HTML'] = "Allow HTML";
$lang['Allow_BBCode'] = "Allow BBCode";
$lang['Allowed_tags'] = "Allowed HTML tags";
$lang['Allowed_tags_explain'] = "Separate tags with commas";
$lang['Allow_smilies'] = "Allow Smilies";
$lang['Smilies_path'] = "Smilies Storage Path";
$lang['Smilies_path_explain'] = "Path under your phpBB root dir, e.g. images/smilies";
$lang['Allow_sig'] = "Allow Signatures";
$lang['Max_sig_length'] = "Maximum signature length";
$lang['Max_sig_length_explain'] = "Maximum number of characters in user signatures";
$lang['Allow_name_change'] = "Allow Username changes";
$lang['Avatar_settings'] = "Avatar Settings";
$lang['Allow_local'] = "Enable gallery avatars";
$lang['Allow_remote'] = "Enable remote avatars";
$lang['Allow_remote_explain'] = "Avatars linked to from another website";
$lang['Allow_upload'] = "Enable avatar uploading";
$lang['Max_filesize'] = "Maximum Avatar File Size";
$lang['Max_filesize_explain'] = "For uploaded avatar files";
$lang['Max_avatar_size'] = "Maximum Avatar Dimensions";
$lang['Max_avatar_size_explain'] = "(Height x Width in pixels)";
$lang['Avatar_storage_path'] = "Avatar Storage Path";
$lang['Avatar_storage_path_explain'] = "Path under your phpBB root dir, e.g. images/avatars";
$lang['Avatar_gallery_path'] = "Avatar Gallery Path";
$lang['Avatar_gallery_path_explain'] = "Path under your phpBB root dir for pre-loaded images, e.g. images/avatars/gallery";
$lang['COPPA_settings'] = "COPPA Settings";
$lang['COPPA_fax'] = "COPPA Fax Number";
$lang['COPPA_mail'] = "COPPA Mailing Address";
$lang['COPPA_mail_explain'] = "This is the mailing address where parents will send COPPA registration forms";
$lang['Email_settings'] = "Email Settings";
$lang['Admin_email'] = "Admin Email Address";
$lang['Email_sig'] = "Email Signature";
$lang['Email_sig_explain'] = "This text will be attached to all emails the board sends";
$lang['Use_SMTP'] = "Use SMTP Server for email";
$lang['Use_SMTP_explain'] = "Say yes if you want or have to send email via a named server instead of the local mail function";
$lang['SMTP_server'] = "SMTP Server Address";
$lang['Disable_privmsg'] = "Private Messaging";
$lang['Inbox_limits'] = "Max posts in Inbox";
$lang['Sentbox_limits'] = "Max posts in Sentbox";
$lang['Savebox_limits'] = "Max posts in Savebox";
$lang['Cookie_settings'] = "Cookie settings";
$lang['Cookie_settings_explain'] = "These control how the cookie sent to browsers is defined. In most cases the default should be sufficient. If you need to change these do so with care, incorrect settings can prevent users logging in.";
$lang['Cookie_name'] = "Cookie name";
$lang['Cookie_domain'] = "Cookie domain";
$lang['Cookie_path'] = "Cookie path";
$lang['Session_length'] = "Session length [ seconds ]";
$lang['Cookie_secure'] = "Cookie secure [ https ]";
//
// Forum Management
//
$lang['Forum_admin'] = "Forum Administration";
$lang['Forum_admin_explain'] = "From this panel you can add, delete, edit, re-order and re-synchronise categories and forums";
$lang['Edit_forum'] = "Edit forum";
$lang['Create_forum'] = "Create new forum";
$lang['Create_category'] = "Create new category";
$lang['Remove'] = "Remove";
$lang['Action'] = "Action";
$lang['Update_order'] = "Update Order";
$lang['Config_updated'] = "Forum Configuration Updated Successfully";
$lang['Edit'] = "Edit";
$lang['Delete'] = "Delete";
$lang['Move_up'] = "Move up";
$lang['Move_down'] = "Move down";
$lang['Resync'] = "Resync";
$lang['No_mode'] = "No mode was set";
$lang['Forum_edit_delete_explain'] = "The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side";
$lang['Move_contents'] = "Move all contents";
$lang['Forum_delete'] = "Delete Forum";
$lang['Forum_delete_explain'] = "The form below will allow you to delete a forum (or category) and decide where you want to put all topics (or forums) it contained.";
$lang['Forum_settings'] = "General Forum Settings";
$lang['Forum_name'] = "Forum name";
$lang['Forum_desc'] = "Description";
$lang['Forum_status'] = "Forum status";
$lang['Forum_pruning'] = "Auto-pruning";
$lang['prune_freq'] = 'Check for topic age every';
$lang['prune_days'] = "Remove topics that have not been posted to in";
$lang['Set_prune_data'] = "You have turned on auto-prune for this forum but did not set a frequency or number of days to prune. Please go back and do so";
$lang['Move_and_Delete'] = "Move and Delete";
$lang['Delete_all_posts'] = "Delete all posts";
$lang['Nowhere_to_move'] = "Nowhere to move too";
$lang['Edit_Category'] = "Edit Category";
$lang['Edit_Category_explain'] = "Use this form to modify a categories name.";
$lang['Forums_updated'] = "Forum and Category information updated successfully";
$lang['Must_delete_forums'] = "You need to delete all forums before you can delete this category";
$lang['Click_return_forumadmin'] = "Click %sHere%s to return to Forum Administration";
//
// Smiley Management
//
$lang['smiley_title'] = "Smiles Editing Utility";
$lang['smile_desc'] = "From this page you can add, remove and edit the emoticons or smileys your users can use in their posts and private messages.";
$lang['smiley_config'] = "Smiley Configuration";
$lang['smiley_code'] = "Smiley Code";
$lang['smiley_url'] = "Smiley Image File";
$lang['smiley_emot'] = "Smiley Emotion";
$lang['smile_add'] = "Add a new Smiley";
$lang['Smile'] = "Smile";
$lang['Emotion'] = "Emotion";
$lang['Select_pak'] = "Select Pack (.pak) File";
$lang['replace_existing'] = "Replace Existing Smiley";
$lang['keep_existing'] = "Keep Existing Smiley";
$lang['smiley_import_inst'] = "You should unzip the smiley package and upload all files to the appropriate Smiley directory for your installation. Then select the correct information in this form to import the smiley pack.";
$lang['smiley_import'] = "Smiley Pack Import";
$lang['choose_smile_pak'] = "Choose a Smile Pack .pak file";
$lang['import'] = "Import Smileys";
$lang['smile_conflicts'] = "What should be done in case of conflicts";
$lang['del_existing_smileys'] = "Delete existing smileys before import";
$lang['import_smile_pack'] = "Import Smiley Pack";
$lang['export_smile_pack'] = "Create Smiley Pack";
$lang['export_smiles'] = "To create a smiley pack from your currently installed smileys, click %sHere%s to download the smiles.pak file. Name this file appropriately making sure to keep the .pak file extension. Then create a zip file containing all of your smiley images plus this .pak configuration file.";
$lang['smiley_add_success'] = "The Smiley was successfully added";
$lang['smiley_edit_success'] = "The Smiley was successfully updated";
$lang['smiley_import_success'] = "The Smiley Pack was imported successfully!";
$lang['smiley_del_success'] = "The Smiley was successfully removed";
$lang['Click_return_smileadmin'] = "Click %sHere%s to return to Smiley Administration";
//
// User Management
//
$lang['User_admin'] = "User Administration";
$lang['User_admin_explain'] = "Here you can change your user's information and certain specific options. To modify the users permissions please use the user and group permissions system.";
$lang['Look_up_user'] = "Look up user";
$lang['Admin_user_fail'] = "Couldn't update the users profile.";
$lang['Admin_user_updated'] = "The user's profile was successfully updated.";
$lang['Click_return_useradmin'] = "Click %sHere%s to return to User Administration";
$lang['User_delete'] = "Delete this user";
$lang['User_delete_explain'] = "Click here to delete this user, this cannot be undone.";
$lang['User_deleted'] = "User was successfully deleted.";
$lang['User_status'] = "User is active";
$lang['User_allowpm'] = "Can send Private Messages";
$lang['User_allowavatar'] = "Can display avatar";
$lang['Admin_avatar_explain'] = "Here you can see and delete the user's current avatar.";
$lang['User_special'] = "Special admin-only fields";
$lang['User_special_explain'] = "These fields are not able to be modified by the users. Here you can set their status and other options that are not given to users.";
//
// Group Management
//
$lang['Group_administration'] = "Group Administration";
$lang['Group_admin_explain'] = "From this panel you can administer all your usergroups, you can; delete, create and edit existing groups. You may choose moderators, toggle open/closed group status and set the group name and description";
$lang['Error_updating_groups'] = "There was an error while updating the groups";
$lang['Updated_group'] = "The group was successfully updated";
$lang['Added_new_group'] = "The new group was successfully created";
$lang['Deleted_group'] = "The group was successfully deleted";
$lang['New_group'] = "Create new group";
$lang['Edit_group'] = "Edit group";
$lang['group_name'] = "Group name";
$lang['group_description'] = "Group description";
$lang['group_moderator'] = "Group moderator";
$lang['group_status'] = "Group status";
$lang['group_open'] = "Open group";
$lang['group_closed'] = "Closed group";
$lang['group_hidden'] = "Hidden group";
$lang['group_delete'] = "Delete group";
$lang['group_delete_check'] = "Delete this group";
$lang['submit_group_changes'] = "Submit Changes";
$lang['reset_group_changes'] = "Reset Changes";
$lang['No_group_name'] = "You must specify a name for this group";
$lang['No_group_moderator'] = "You must specify a moderator for this group";
$lang['No_group_mode'] = "You must specify a mode for this group, open or closed";
$lang['delete_group_moderator'] = "Delete the old group moderator?";
$lang['delete_moderator_explain'] = "If you're changing the group moderator, check this box to remove the old moderator from the group. Otherwise, do not check it, and the user will become a regular member of the group.";
$lang['Click_return_groupsadmin'] = "Click %sHere%s to return to Group Administration.";
$lang['Select_group'] = "Select a group";
$lang['Look_up_group'] = "Look up group";
//
// Prune Administration
//
$lang['Forum_Prune'] = "Forum Prune";
$lang['Forum_Prune_explain'] = "This will delete any topic which has not been posted to within the number of days you select. If you do not enter a number then all topics will be deleted. It will not remove topics in which polls are still running nor will it remove announcements. You will need to remove these topics manually.";
$lang['Do_Prune'] = "Do Prune";
$lang['All_Forums'] = "All Forums";
$lang['Prune_topics_not_posted'] = "Prune topics with no replies in this many days";
$lang['Topics_pruned'] = "Topics pruned";
$lang['Posts_pruned'] = "Posts pruned";
$lang['Prune_success'] = "Pruning of forums was successful";
//
// Word censor
//
$lang['Words_title'] = "Word Censoring";
$lang['Words_explain'] = "From this control panel you can add, edit, and remove words that will be automatically censored on your forums. In addition people will not be allowed to register with usernames containing these words. Wildcards (*) are accepted in the word field, eg. *test* will match detestable, test* would match testing, *test would match detest.";
$lang['Word'] = "Word";
$lang['Edit_word_censor'] = "Edit word censor";
$lang['Replacement'] = "Replacement";
$lang['Add_new_word'] = "Add new word";
$lang['Update_word'] = "Update word censor";
$lang['Must_enter_word'] = "You must enter a word and its replacement";
$lang['No_word_selected'] = "No word selected for editing";
$lang['Word_updated'] = "The selected word censor has been successfully updated";
$lang['Word_added'] = "The word censor has been successfully added";
$lang['Word_removed'] = "The selected word censor has been successfully removed";
$lang['Click_return_wordadmin'] = "Click %sHere%s to return to Word Censor Administration";
//
// Mass Email
//
$lang['Mass_email_explain'] = "Here you can email a message to either all of your users, or all users of a specific group. To do this, an email will be sent out to the administrative email address supplied, with a blind carbon copy sent to all recipients. If you are emailing a large group of people please be patient after submitting and do not stop the page halfway through. It is normal for amass emailing to take a long time, you will be notified when the script has completed";
$lang['Compose'] = "Compose";
$lang['Recipients'] = "Recipients";
$lang['All_users'] = "All Users";
$lang['Email_successfull'] = "Your message has been sent";
$lang['Click_return_massemail'] = "Click %sHere%s to return to the Mass Email form";
//
// Ranks admin
//
$lang['Ranks_title'] = "Rank Administration";
$lang['Ranks_explain'] = "Using this form you can add, edit, view and delete ranks. You can also create custom ranks which can be applied to a user via the user management facility";
$lang['Add_new_rank'] = "Add new rank";
$lang['Rank_title'] = "Rank Title";
$lang['Rank_special'] = "Set as Special Rank";
$lang['Rank_minimum'] = "Minimum Posts";
$lang['Rank_maximum'] = "Maximum Posts";
$lang['Rank_image'] = "Rank Image";
$lang['Rank_image_explain'] = "Use this to define a small image associated with the rank";
$lang['Must_select_rank'] = "You must select a rank";
$lang['No_assigned_rank'] = "No special rank assigned";
$lang['Rank_updated'] = "The rank was successfully updated";
$lang['Rank_added'] = "The rank was successfully added";
$lang['Rank_removed'] = "The rank was successfully deleted";
$lang['Click_return_rankadmin'] = "Click %sHere%s to return to Rank Administration";
//
// Disallow Username Admin
//
$lang['Disallow_control'] = "Username Disallow Control";
$lang['Disallow_explain'] = "Here you can control usernames which will not be allowed to be used. Disallowed usernames are allowed to contain a wildcard character of *. Please note that you will not be allowed to specify any username that has already been registered, you must first delete that name then disallow it";
$lang['Delete_disallow'] = "Delete";
$lang['Delete_disallow_title'] = "Remove a Disallowed Username";
$lang['Delete_disallow_explain'] = "You can remove a disallowed username by selecting the username from this list and clicking submit";
$lang['Add_disallow'] = "Add";
$lang['Add_disallow_title'] = "Add a disallowed username";
$lang['Add_disallow_explain'] = "You can disallow a username using the wildcard character * to match any character";
$lang['No_disallowed'] = "No Disallowed Usernames";
$lang['Disallowed_deleted'] = "The disallowed username has been successfully removed";
$lang['Disallow_successful'] = "The disallowed username has ben successfully added";
$lang['Disallowed_already'] = "The name you entered could not be disallowed. It either already exists in the list or a matching username is present";
$lang['Click_return_disallowadmin'] = "Click %sHere%s to return to Disallow Username Administration";
//
// Styles Admin
//
$lang['Styles_admin'] = "Styles Administration";
$lang['Styles_explain'] = "Using this facility you can add, remove and manage styles (templates and themes) available to your users";
$lang['Styles_addnew_explain'] = "The following list contains all the themes that are available for the templates you currently have. The items on this list have not yet been installed into the phpBB database. To install a theme simply click the install link beside an entry";
$lang['Select_template'] = "Select a Template";
$lang['Style'] = "Style";
$lang['Template'] = "Template";
$lang['Install'] = "Install";
$lang['Download'] = "Download";
$lang['Edit_theme'] = "Edit Theme";
$lang['Edit_theme_explain'] = "In the form below you can edit the settings for the selected theme";
$lang['Create_theme'] = "Create Theme";
$lang['Create_theme_explain'] = "Use the form below to create a new theme for a selected template. When entering colours (for which you should use hexadecimal notation) you must not include the initial #, i.e.. CCCCCC is valid, #CCCCCC is not";
$lang['Export_themes'] = "Export Themes";
$lang['Export_explain'] = "In this panel you will be able to export the theme data for a selected template. Select the template from the list below and the script will create the theme configuration file and attempt to save it to the selected template directory. If it cannot save the file itself it will give you the option to download it. In order for the script to save the file you must give write access to the webserver for the selected template dir. For more information on this see the phpBB 2 users guide.";
$lang['Theme_installed'] = "The selected theme has been installed successfully";
$lang['Style_removed'] = "The selected style has been removed from the database. To fully remove this style from your system you must delete the appropriate style from your templates directory.";
$lang['Theme_info_saved'] = "The theme information for the selected template has been saved. You should now return the permissions on the theme_info.cfg (and if applicable the selected template directory) to read-only";
$lang['Theme_updated'] = "The selected theme has been updated. You should now export the new theme settings";
$lang['Theme_created'] = "Theme created. You should now export the theme to the theme configuration file for safe keeping or use elsewhere";
$lang['Confirm_delete_style'] = "Are you sure you want to delete this style";
$lang['Download_theme_cfg'] = "The exporter could not write the theme information file. Click the button below to download this file with your browser. Once you have downloaded it you can transfer it to the directory containing the template files. You can then package the files for distribution or use elsewhere if you desire";
$lang['No_themes'] = "The template you selected has no themes attached to it. To create a new theme click the Create New link on the left hand panel";
$lang['No_template_dir'] = "Could not open the template directory. It may be unreadable by the webserver or may not exist";
$lang['Cannot_remove_style'] = "You cannot remove the style selected since it is currently the forum default. Please change the default style and try again.";
$lang['Click_return_styleadmin'] = "Click %sHere%s to return to Style Administration";
$lang['Theme_settings'] = "Theme Settings";
$lang['Theme_element'] = "Theme Element";
$lang['Simple_name'] = "Simple Name";
$lang['Value'] = "Value";
$lang['Stylesheet'] = "CSS Stylesheet";
$lang['Background_image'] = "Background Image";
$lang['Background_color'] = "Background Colour";
$lang['Theme_name'] = "Theme Name";
$lang['Link_color'] = "Link Colour";
$lang['VLink_color'] = "Visited Link Colour";
$lang['ALink_color'] = "Active Link Colour";
$lang['HLink_color'] = "Hover Link Colour";
$lang['Tr_color1'] = "Table Row Colour 1";
$lang['Tr_color2'] = "Table Row Colour 2";
$lang['Tr_color3'] = "Table Row Colour 3";
$lang['Tr_class1'] = "Table Row Class 1";
$lang['Tr_class2'] = "Table Row Class 2";
$lang['Tr_class3'] = "Table Row Class 3";
$lang['Th_color1'] = "Table Header Colour 1";
$lang['Th_color2'] = "Table Header Colour 2";
$lang['Th_color3'] = "Table Header Colour 3";
$lang['Th_class1'] = "Table Header Class 1";
$lang['Th_class2'] = "Table Header Class 2";
$lang['Th_class3'] = "Table Header Class 3";
$lang['Td_color1'] = "Table Cell Colour 1";
$lang['Td_color2'] = "Table Cell Colour 2";
$lang['Td_color3'] = "Table Cell Colour 3";
$lang['Td_class1'] = "Table Cell Class 1";
$lang['Td_class2'] = "Table Cell Class 2";
$lang['Td_class3'] = "Table Cell Class 3";
$lang['fontface1'] = "Font Face 1";
$lang['fontface2'] = "Font Face 2";
$lang['fontface3'] = "Font Face 3";
$lang['fontsize1'] = "Font Size 1";
$lang['fontsize2'] = "Font Size 2";
$lang['fontsize3'] = "Font Size 3";
$lang['fontcolor1'] = "Font Colour 1";
$lang['fontcolor2'] = "Font Colour 2";
$lang['fontcolor3'] = "Font Colour 3";
$lang['span_class1'] = "Span Class 1";
$lang['span_class2'] = "Span Class 2";
$lang['span_class3'] = "Span Class 3";
$lang['img_poll_size'] = "Polling Image Size [px]";
$lang['img_pm_size'] = "Private Message Status size [px]";
//
// Install Process
//
$lang['Welcome_install'] = "Welcome to phpBB 2 Installation";
$lang['Initial_config'] = "Basic Configuration";
$lang['DB_config'] = "Database Configuration";
$lang['Admin_config'] = "Admin Configuration";
$lang['Installer_Error'] = "An error has occurred during installation";
$lang['Previous_Install'] = "A previous installation has been detected";
$lang['Install_db_error'] = "An error occurred trying to update the database";
$lang['Re_install'] = "Your previous installation is still active. <br /><br />If you would like to re-install phpBB 2 you should click the Yes button below. Please be aware that doing so will destroy all existing data, no backups will be made! The administrator username and password you have used to login in to the board will be re-created after the re-installation, no other settings will be retained. <br /><br />Think carefully before pressing Yes!";
$lang['Inst_Step_0'] = "Thank you for choosing phpBB 2. In order to complete this install please fill out the details requested below. Please note that the database you install into should already exist. If you are installing to a database that uses ODBC, e.g. MS Access you should first create a DSN for it before proceeding.";
$lang['Start_Install'] = "Start Install";
$lang['Finish_Install'] = "Finish Installation";
$lang['Default_lang'] = "Default board language";
$lang['DB_Host'] = "Database Server Hostname / DSN";
$lang['DB_Name'] = "Your Database Name";
$lang['Database'] = "Your Database";
$lang['Install_lang'] = "Choose Language for Installation";
$lang['dbms'] = "Database Type";
$lang['Table_Prefix'] = "Prefix for tables in database";
$lang['Admin_Username'] = "Administrator Username";
$lang['Admin_Password'] = "Administrator Password";
$lang['Admin_Password_confirm'] = "Administrator Password [ Confirm ]";
$lang['Inst_Step_2'] = "Your admin username has been created. At this point your basic installation is complete. You will now be taken to a screen which will allow you to administer your new installation. Please be sure to check the General Configuration details and make any required changes. Thank you for choosing phpBB 2.";
$lang['Unwriteable_config'] = "Your config file is un-writeable at present. A copy of the config file will be downloaded to your when you click the button below. You should upload this file to the same directory as phpBB 2. Once this is done you should log in using the administrator name and password you provided on the previous form and visit the admin control centre (a link will appear at the bottom of each screen once logged in) to check the general configuration. Thank you for choosing phpBB 2.";
$lang['Download_config'] = "Download Config";
$lang['ftp_choose'] = "Choose Download Method";
$lang['ftp_option'] = "<br />Since FTP extensions are enabled in this version of PHP you may also be given the option of first trying to automatically ftp the config file into place.";
$lang['ftp_instructs'] = "You have chosen to ftp the file to the account containing phpBB 2 automatically. Please enter the information below to facilitate this process. Note that the FTP path should be the exact path via ftp to your phpBB2 installation as if you were ftping to it using any normal client.";
$lang['ftp_info'] = "Enter Your FTP Information";
$lang['Attempt_ftp'] = "Attempt to ftp config file into place";
$lang['Send_file'] = "Just send the file to me and I'll ftp it manually";
$lang['ftp_path'] = "FTP path to phpBB 2";
$lang['ftp_username'] = "Your FTP Username";
$lang['ftp_password'] = "Your FTP Password";
$lang['Transfer_config'] = "Start Transfer";
$lang['Install'] = "Install";
$lang['Upgrade'] = "Upgrade";
$lang['Install_Method'] = "Choose your installation method";
//
// That's all Folks!
// -------------------------------------------------
?>
--- NEW FILE ---
<?php
/***************************************************************************
* lang_faq.php [Greek]
* -------------------
* begin : Wednesday Oct 3, 2001
* copyright : (C) 2001 The phpBB Group
* email : su...@ph...
*
* $Id: lang_faq.php,v 1.3 2001/11/27 21:37:31 psotfx Exp $
*
*
***************************************************************************/
/***************************************************************************
*
* 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.");
?>
--- NEW FILE ---
<?php
/***************************************************************************
* lang_main.php [Greek]
* -------------------
* begin : Dec 6 2001
* copyright : (C) 2001 The phpBB Group
* email : su...@ph...
*
* $Id: lang_main.php,v 1.58 2001/11/29 22:51:34 psotfx Exp $
*
****************************************************************************/
/***************************************************************************
*
* 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...
//
setlocale(LC_ALL, "el");
$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
//
// Common, these terms are used
// extensively on several pages
//
$lang['Forum'] = "Äçìüóéá óõæÞôçóç";
$lang['Category'] = "Êáôçãïñßá";
$lang['Topic'] = "ÈåìáôéêÞ Åíüôçôá";
$lang['Topics'] = "ÈåìáôéêÝò Åíüôçôåò";
$lang['Reply'] = "ÁðÜíôçóç";
$lang['Replies'] = "ÁðáíôÞóåéò";
$lang['Views'] = "Áíáãíþóåéò";
$lang['Post'] = "Äçìïóßåõóç";
$lang['Posts'] = "Äçìïóéåýóåéò";
$lang['Posted'] = "Äçìïóéåýèçêå";
$lang['Username'] = "¼íïìá ÷ñÞóôç";
$lang['Password'] = "Êùäéêüò";
$lang['Email'] = "Email";
$lang['Poster'] = "ÁðïóôïëÝáò";
$lang['Author'] = "ÓõããñáöÝáò";
$lang['Time'] = "¿ñá";
$lang['Hours'] = "¿ñåò";
$lang['Message'] = "ÌÞíõìá";
$lang['1_Day'] = "1 ÇìÝñá";
$lang['7_Days'] = "7 ÇìÝñåò";
$lang['2_Weeks'] = "2 ÅâäïìÜäåò";
$lang['1_Month'] = "1 ÌÞíá";
$lang['3_Months'] = "3 ÌÞíåò";
$lang['6_Months'] = "6 ÌÞíåò";
$lang['1_Year'] = "1 ¸ôïò";
$lang['Go'] = "Go";
$lang['Jump_to'] = "ÌåôÜâáóç óôç";
$lang['Submit'] = "ÕðïâïëÞ";
$lang['Reset'] = "ÅðáíåéóáãùãÞ";
$lang['Cancel'] = "¶êõñï";
$lang['Preview'] = "Ðñïåðéóêüðéóç";
$lang['Confirm'] = "Åðéâåâáßùóç";
$lang['Spellcheck'] = "¸ëåã÷ïò Ïñèïãñáößáò";
$lang['Yes'] = "Íáß";
$lang['No'] = "¼÷é";
$lang['Enabled'] = "ÅíåñãïðïéçìÝíï";
$lang['Disabled'] = "ÁðåíåñãïðïéçìÝíï";
$lang['Error'] = "ËÜèïò";
$lang['Success'] = "Åðéôõ÷Ýò";
$lang['Next'] = "Åðüìåíï";
$lang['Previous'] = "Ðñïçãïýìåíï";
$lang['Goto_page'] = "ÌåôÜâáóç óôç óåëßäá";
$lang['Joined'] = "Joined";
$lang['IP_Address'] = "IP Äéåýèõíóç";
$lang['Select_forum'] = "ÅðéëÝîôå ìéá Äçìüóéá Óõæ...
[truncated message content] |
Update of /cvsroot/phpbb/phpBB2/language/lang_greek/email
In directory usw-pr-cvs1:/tmp/cvs-serv4043/language/lang_greek/email
Added 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 index.htm 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:
Initial version by arttor
--- NEW FILE ---
Hello,
Ï ëïãáñéáóìüò ï ïðïßïò áíÞêåé óôïí ÷ñÞóôç "{USERNAME}" Ý÷åé áðåíåñãïðïéçèåß Þ ìüëéò äçìéïõñãÞèçêå, ðñÝðåé íá åëÝãîåôå ôá óôïé÷åßá áõôïý ôïõ ÷ñÞóôç (åÜí ÷ñåéÜæåôáé) êáé åíåñãïðïéÞóôå ôïí ÷ñçóéìïðïéþíôáò ôçí áêüëïõèç äéáäñïìÞ:
{U_ACTIVATE}
{EMAIL_SIG}
--- NEW FILE ---
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:
{BOARD_EMAIL}
Include this full email (particularly the headers).
Message sent to you follows:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{MESSAGE}
--- NEW FILE ---
Hello {USERNAME},
Your account on "{SITENAME}" has now been activated, you may login using the username and password you received in a previous email.
{EMAIL_SIG}
--- NEW FILE ---
{WELCOME_MSG}
Please keep this email for your records. Your account information is as follows:
----------------------------
Username: {USERNAME}
Password: {PASSWORD}
----------------------------
Your account is currently inactive, the administrator of the board will need to activate it before you can log in. You will receive another email when this has occured.
Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account.
Thank you for registering.
{EMAIL_SIG}
--- NEW FILE ---
{WELCOME_MSG}
In compliance with the COPPA act your account is currently inactive.
Please print this message out and have your parent or guardian sign and date it. Then fax it to:
{FAX_INFO}
OR mail it to:
{MAIL_INFO}
------------------------------ CUT HERE ------------------------------
Permission to Participate at {SITENAME}
Username: {USERNAME}
Password: {PASSWORD}
Email: {EMAIL_ADDRESS}
ICQ Number: {ICQ}
AIM Address: {AIM}
MSN Messenger: {MSN}
Yahoo Messenger: {YIM}
Web Site: {WEB_SITE}
From: {FROM}
Occupation: {OCC}
Interests: {INTERESTS}
I HAVE REVIEWED THE INFORMATION PROVIDED BY MY CHILD AND HEREBY GRANT PERMISSION TO {SITENAME} TO STORE THIS INFORMATION.
I UNDERSTAND THIS INFORMATION CAN BE CHANGED AT ANY TIME BY ENTERING A PASSWORD.
I UNDERSTAND THAT MAY REQUEST FOR THIS INFORMATION TO BE REMOVED FROM {SITENAME} AT ANY TIME.
Parent or Guardian
(print your name here): _____________________
(sign here): __________________
Date: _______________
------------------------------ CUT HERE ------------------------------
Once the administrator has recived the above form via fax or regular mail your account will be activated.
Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account.
Thank you for registering.
{EMAIL_SIG}
--- NEW FILE ---
Congratulations,
You have been added to the "{GROUP_NAME}" group on {SITENAME}.
This action was done by the group moderator or the site administrator, contact them for more information.
You can view your groups information here:
{U_GROUPCP}
{EMAIL_SIG}
--- NEW FILE ---
Congratulations,
Your request to join the "{GROUP_NAME}" group on {SITENAME} has been approved.
Click on the following link to see your group membership.
{U_GROUPCP}
{EMAIL_SIG}
--- NEW FILE ---
Dear {GROUP_MODERATOR},
A user has requested to join a group you moderator on {SITENAME}.
To approve to deny this request for group membership please visit the following link:
{U_GROUPCP}
{EMAIL_SIG}
--- NEW FILE ---
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-7">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>
--- NEW FILE ---
Hello {USERNAME},
You have received a new private message to your account on "{SITENAME}" and you have requested that you be notified on this event. You can view your new message by clicking on the following link:
{U_INBOX}
Remember that you can always choose not to be notified of new messages by changing the appropriate setting in your profile.
{EMAIL_SIG}
--- NEW FILE ---
Hello {TO_USERNAME},
The following is an email sent to you by {FROM_USERNAME} via your account on {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:
{BOARD_EMAIL}
Include this full email (particularly the headers). Please note that the reply address to this email has been set to that of {FROM_USERNAME}.
Message sent to you follows
~~~~~~~~~~~~~~~~~~~~~~~~~~~
{MESSAGE}
--- NEW FILE ---
Hello {USERNAME},
You are receiving this email because you are watching the topic, "{TOPIC_TITLE}" at {SITENAME}. This topic has received a reply since your last visit. You can use the following link to view the replies made, no more notifications will be sent until you visit the topic.
{U_TOPIC}
If you no longer wish to watch this topic you can either click the "Stop watching this topic link" found at the bottom of the topic above, or by clicking the following link:
{U_STOP_WATCHING_TOPIC}
{EMAIL_SIG}
--- NEW FILE ---
Hello {USERNAME},
Your account on "{SITENAME}" has been deactivated, most likely due to changes made to your profile. In order to reactivate your account you must click on the link below:
{U_ACTIVATE}
{EMAIL_SIG}
--- NEW FILE ---
Hello {USERNAME}
You are receiving this email because you have (or someone pretending to be you has) requested a new password be sent for your account on {SITENAME}. If you did not request this email then please ignore it, if you keep receiving it please contact the board administrator.
To use the new password you need to activate it. To do this click the link provided below.
{U_ACTIVATE}
If sucessful you will be able to login using the following password:
Password: {PASSWORD}
You can of course change this password yourself via the profile page. If you have any difficulties please contact the board administrator.
{EMAIL_SIG}
--- NEW FILE ---
{WELCOME_MSG}
Please keep this email for your records. Your account information is as follows:
----------------------------
Username: {USERNAME}
Password: {PASSWORD}
----------------------------
Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account.
Thank you for registering.
{EMAIL_SIG}
--- NEW FILE ---
{WELCOME_MSG}
Please keep this email for your records. Your account information is as follows:
----------------------------
Username: {USERNAME}
Password: {PASSWORD}
----------------------------
Your account is currently inactive. You cannot use it until you visit the following link:
{U_ACTIVATE}
Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account.
Thank you for registering.
{EMAIL_SIG}
|
|
From: Paul S. O. <ps...@us...> - 2002-01-25 01:38:32
|
Update of /cvsroot/phpbb/phpBB2/language/lang_greek/email In directory usw-pr-cvs1:/tmp/cvs-serv3969/email Log Message: Directory /cvsroot/phpbb/phpBB2/language/lang_greek/email added to the repository |
|
From: Paul S. O. <ps...@us...> - 2002-01-25 01:38:26
|
Update of /cvsroot/phpbb/phpBB2/language/lang_greek In directory usw-pr-cvs1:/tmp/cvs-serv3943/lang_greek Log Message: Directory /cvsroot/phpbb/phpBB2/language/lang_greek added to the repository |
|
From: Paul S. O. <ps...@us...> - 2002-01-25 01:31:45
|
Update of /cvsroot/phpbb/phpBB2/develop
In directory usw-pr-cvs1:/tmp/cvs-serv2755/develop
Modified Files:
search_fill.php
Log Message:
Added title support and updated for changes in includes/search ... title slows it down, guess it needs some work if possible ...
Index: search_fill.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/develop/search_fill.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** search_fill.php 2002/01/03 11:06:22 1.7
--- search_fill.php 2002/01/25 01:31:42 1.8
***************
*** 2,6 ****
set_time_limit(0);
! $common_percent = 40; // Percentage of posts in which a word has to appear to be marked as common
$phpbb_root_path = "../";
--- 2,6 ----
set_time_limit(0);
! $common_percent = 0.4; // Percentage of posts in which a word has to appear to be marked as common
$phpbb_root_path = "../";
***************
*** 22,28 ****
// This needs fixing! Shouldn't be hardcoded to English files!
! $stopword_array = file($phpbb_root_path . "language/lang_english/search_stopwords.txt");
$synonym_array = file($phpbb_root_path . "language/lang_english/search_synonyms.txt");
!
for ($j = 0; $j < count($stopword_array); $j++)
{
--- 22,28 ----
// This needs fixing! Shouldn't be hardcoded to English files!
! //$stopword_array = file($phpbb_root_path . "language/lang_english/search_stopwords.txt");
$synonym_array = file($phpbb_root_path . "language/lang_english/search_synonyms.txt");
! /*
for ($j = 0; $j < count($stopword_array); $j++)
{
***************
*** 30,47 ****
$search[] = "/\b" . phpbb_preg_quote($filter_word, "/") . "\b/is";
$replace[] = '';
- }
-
- for ($j = 0; $j < count($synonym_list); $j++)
- {
- list($replace_synonym, $match_synonym) = split(" ", trim(strtolower($synonym_list[$j])));
- $search[] = "/\b" . phpbb_preg_quote(trim($match_synonym), "/") . "\b/is";
- $replace[] = " " . trim($replace_synonym) . " ";
}
//
// Fetch a batch of posts_text entries
//
! $sql = "
! SELECT count(*) as total, max(post_id) as max_post_id
FROM ". POSTS_TEXT_TABLE;
if(!$result = $db->sql_query($sql))
--- 30,40 ----
$search[] = "/\b" . phpbb_preg_quote($filter_word, "/") . "\b/is";
$replace[] = '';
}
+ */
//
// Fetch a batch of posts_text entries
//
! $sql = "SELECT count(*) as total, max(post_id) as max_post_id
FROM ". POSTS_TEXT_TABLE;
if(!$result = $db->sql_query($sql))
***************
*** 64,69 ****
$batchcount++;
! $sql = "SELECT *
! FROM " . POSTS_TEXT_TABLE ."
WHERE post_id
BETWEEN $batchstart
--- 57,62 ----
$batchcount++;
! $sql = "SELECT *
! FROM " . POSTS_TEXT_TABLE . "
WHERE post_id
BETWEEN $batchstart
***************
*** 93,196 ****
$post_id = $rowset[$post_nr]['post_id'];
! $data = $rowset[$post_nr]['post_text']; // Raw data
! $text = clean_words($data, $search, $replace); // Cleaned up post
! $matches = split_words($text);
! $num_matches = count($matches);
! if($num_matches < 1)
! {
! // Skip this post if no words where found
! continue;
! }
!
! $word = array();
! $word_count = array();
! $sql_in = "";
! $phrase_string = $text;
!
! // For all words in the posting
! $sql_insert = '';
! $sql_select = '';
! for($j = 0; $j < $num_matches; $j++)
{
! $this_word = strtolower(trim($matches[$j]));
! if($this_word != '')
{
! $word_count[$this_word]++;
! $comma = ($sql_insert != '')? ', ': '';
!
! $sql_insert .= "$comma('" .$this_word. "')";
! $sql_select .= "$comma'" .$this_word. "'";
}
- }
- if($sql_insert == '')
- {
- die("no words found");
- }
-
- $sql = 'INSERT IGNORE INTO '.SEARCH_WORD_TABLE."
- (word_text)
- VALUES $sql_insert";
- if( !$result = $db->sql_query($sql) )
- {
- $error = $db->sql_error();
- die("Couldn't INSERT words :: " . $sql . " :: " . $error['message']);
- }
-
- // Get the word_id's out of the DB (to see if they are already there)
- $sql = "SELECT word_id, word_text
- FROM ".SEARCH_WORD_TABLE."
- WHERE word_text IN ($sql_select)
- GROUP BY word_text";
- $result = $db->sql_query($sql);
- if( !$result )
- {
- $error = $db->sql_error();
- die("Couldn't select words :: " . $sql . " :: " . $error['message']);
- }
- if( $word_check_count = $db->sql_numrows($result) )
- {
- $selected_words = $db->sql_fetchrowset($result);
- }
- else
- {
- print "Couldn't do sql_numrows<br>\n";
- }
- $db->sql_freeresult($result);
-
- $sql_insert = '';
- while(list($junk, $row) = each($selected_words))
- {
- $comma = ($sql_insert != '')? ', ': '';
- $sql_insert .= "$comma($post_id, ".$row['word_id'].", 0)";
- }
-
- $sql = "INSERT INTO ".SEARCH_MATCH_TABLE."
- (post_id, word_id, title_match)
- VALUES
- $sql_insert
- ";
- $result = $db->sql_query($sql);
- if( !$result )
- {
- $error = $db->sql_error();
- die("Couldn't insert new word match :: " . $sql . " :: " . $error['message']);
- }
! /*
! //$phrase_string = preg_replace("/\b" . phpbb_preg_quote($word[$j], "/") . "\b/is", $word_id, $phrase_string);
! $phrase_string = trim(preg_replace("/ {2,}/s", " ", str_replace(array("*", "'"), " ", $phrase_string)));
! $sql = "INSERT INTO phpbb_search_phrasematch (post_id, phrase_list)
! VALUES ($post_id, '$phrase_string')";
! $result = $db->sql_query($sql);
! if( !$result )
! {
! $error = $db->sql_error();
! die("Couldn't insert new phrase match :: " . $sql . " :: " . $error['message']);
! }
! */
! } // All posts
// $sql = "UNLOCK TABLES";
// $result = $db->sql_query($sql);
--- 86,177 ----
$post_id = $rowset[$post_nr]['post_id'];
! $text = clean_words("post", $rowset[$post_nr]['post_text'], $synonym_array); // Cleaned up post
! $text_title = clean_words("post", $rowset[$post_nr]['post_subject'], $synonym_array);
! $matches = array();
! $matches['text'] = split_words($text);
! $matches['title'] = split_words($text_title);
!
! while( list($match_type, $match_ary) = @each($matches) )
{
! $title_match = ( $match_type == 'title' ) ? 1 : 0;
!
! $num_matches = count($match_ary);
!
! if ( $num_matches < 1 )
{
! // Skip this post if no words where found
! continue;
}
! // For all words in the posting
! $sql_in = "";
! $sql_insert = '';
! $sql_select = '';
+ $word = array();
+ $word_count = array();
+
+ for($j = 0; $j < $num_matches; $j++)
+ {
+ $this_word = strtolower(trim($match_ary[$j]));
+ if ( $this_word != '' )
+ {
+ $word_count[$this_word] = ( isset($word_count[$this_word]) ) ? $word_count[$this_word] + 1 : 0;
+ $comma = ($sql_insert != '')? ', ': '';
+
+ $sql_insert .= "$comma('" . $this_word . "')";
+ $sql_select .= "$comma'" . $this_word . "'";
+ }
+ }
+
+ if ( $sql_insert == '' )
+ {
+ die("no words found");
+ }
+
+ $sql = 'INSERT IGNORE INTO ' . SEARCH_WORD_TABLE . "
+ (word_text)
+ VALUES $sql_insert";
+ if ( !$result = $db->sql_query($sql) )
+ {
+ $error = $db->sql_error();
+ die("Couldn't INSERT words :: " . $sql . " :: " . $error['message']);
+ }
+
+ // Get the word_id's out of the DB (to see if they are already there)
+ $sql = "SELECT word_id, word_text
+ FROM " . SEARCH_WORD_TABLE . "
+ WHERE word_text IN ($sql_select)
+ GROUP BY word_text";
+ $result = $db->sql_query($sql);
+ if ( !$result )
+ {
+ $error = $db->sql_error();
+ die("Couldn't select words :: " . $sql . " :: " . $error['message']);
+ }
+
+ $sql_insert = array();
+ while( $row = $db->sql_fetchrow($result) )
+ {
+ $sql_insert[] = "($post_id, " . $row['word_id'] . ", $title_match)";
+ }
+
+ $db->sql_freeresult($result);
+
+ $sql = "INSERT INTO " . SEARCH_MATCH_TABLE . "
+ (post_id, word_id, title_match)
+ VALUES " . implode(", ", $sql_insert);
+ $result = $db->sql_query($sql);
+ if ( !$result )
+ {
+ $error = $db->sql_error();
+ die("Couldn't insert new word match :: " . $sql . " :: " . $error['message']);
+ }
+
+ } // All posts
+ }
+
// $sql = "UNLOCK TABLES";
// $result = $db->sql_query($sql);
***************
*** 209,215 ****
print "<br>Removing common words (words that appear in more than $common_percent of the posts)<br>\n";
flush();
! print "Removed ". remove_common_global($common_percent, 1) ." words that where too common.<br>";
}
-
}
--- 190,195 ----
print "<br>Removing common words (words that appear in more than $common_percent of the posts)<br>\n";
flush();
! print "Removed ". remove_common("global", $common_percent) ." words that where too common.<br>";
}
}
|
|
From: Paul S. O. <ps...@us...> - 2002-01-25 00:48:49
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv26164/includes
Modified Files:
search.php
Log Message:
Various updates to fix problems with large result sets ... code is quite messy, will clean up
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/search.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** search.php 2002/01/14 14:17:18 1.2
--- search.php 2002/01/25 00:48:46 1.3
***************
*** 20,28 ****
***************************************************************************/
! function clean_words($mode, $entry, &$stopword_list, &$synonym_list)
{
// Weird, $init_match doesn't work with static when double quotes (") are used...
! static $drop_char_match = array('^', '$', '&', '(', ')', '<', '>', '`', "'", '|', ',', '@', '_', '?', '%', '-', '~', '+', '.', '[', ']', '{', '}', ':', '\\', '/', '=', '#', '\'', ';', '*', '!');
! static $drop_char_replace = array(" ", " ", " ", " ", " ", " ", " ", " ", "", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " " , " ", " ", " ", " ", " ", " ", " ");
static $accent_match = array("ß", "à", "á", "â", "ã", "ä", "å", "æ", "ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "ø", "ù", "ú", "û", "ü", "ý", "þ", "ÿ");
--- 20,28 ----
***************************************************************************/
! function clean_words($mode, &$entry, &$synonym_list)
{
// Weird, $init_match doesn't work with static when double quotes (") are used...
! static $drop_char_match = array('^', '$', '&', '(', ')', '<', '>', '`', "'", '|', ',', '@', '_', '?', '%', '-', '~', '+', '.', '[', ']', '{', '}', ':', '\\', '/', '=', '#', '\'', ';', '!');
! static $drop_char_replace = array(" ", " ", " ", " ", " ", " ", " ", " ", "", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " " , " ", " ", " ", " ", " ", " ");
static $accent_match = array("ß", "à", "á", "â", "ã", "ä", "å", "æ", "ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "ø", "ù", "ú", "û", "ü", "ý", "þ", "ÿ");
***************
*** 63,86 ****
for($i = 0; $i < count($drop_char_match); $i++)
{
! $entry = str_replace($drop_char_match[$i], $drop_char_replace[$i], $entry);
}
if( $mode == "post" )
{
! // 'words' that consist of <=2 or >=50 characters are removed.
! $entry = preg_replace("/\b([a-z0-9]{1,2}|[a-z0-9]{50,})\b/si", " ", $entry);
! }
!
! if( !empty($stopword_list) )
! {
! for ($j = 0; $j < count($stopword_list); $j++)
! {
! $filter_word = trim(strtolower($stopword_list[$j]));
! if( ( $filter_word != "and" && $filter_word != "or" && $filter_word != "not" ) || $mode == "post" )
! {
! $entry = preg_replace("/\b" . phpbb_preg_quote($filter_word, "/") . "\b/is", " ", $entry);
! }
! }
}
--- 63,75 ----
for($i = 0; $i < count($drop_char_match); $i++)
{
! $entry = str_replace($drop_char_match[$i], $drop_char_replace[$i], $entry);
}
if( $mode == "post" )
{
! $entry = str_replace("*", " ", $entry);
! // 'words' that consist of <=3 or >=50 characters are removed.
! $entry = preg_replace("/\b([a-z0-9]{1,3}|[a-z0-9]{50,})\b/si", " ", $entry);
}
***************
*** 102,108 ****
}
! function split_words(&$entry)
{
! preg_match_all("/\b(\w[\w']*\w+|\w+?)\b/", $entry, $split_entries);
return $split_entries[1];
--- 91,104 ----
}
! function split_words(&$entry, $mode = "post")
{
! if( $mode == "post" )
! {
! preg_match_all("/\b(\w[\w']*\w+|\w+?)\b/", $entry, $split_entries);
! }
! else
! {
! preg_match_all("/(\*?[a-z0-9]+\*?)|\b([a-z0-9]+)\b/is", $entry, $split_entries);
! }
return $split_entries[1];
***************
*** 113,122 ****
global $db, $phpbb_root_path, $board_config, $lang;
- $stopword_array = @file($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/search_stopwords.txt");
$synonym_array = @file($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/search_synonyms.txt");
$search_raw_words = array();
! $search_raw_words['text'] = split_words(clean_words("post", $post_text, $stopword_array, $synonym_array));
! $search_raw_words['title'] = split_words(clean_words("post", $post_title, $stopword_array, $synonym_array));
while( list($word_in, $search_matches) = @each($search_raw_words) )
--- 109,117 ----
global $db, $phpbb_root_path, $board_config, $lang;
$synonym_array = @file($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/search_synonyms.txt");
$search_raw_words = array();
! $search_raw_words['text'] = split_words(clean_words("post", $post_text, $synonym_array));
! $search_raw_words['title'] = split_words(clean_words("post", $post_title, $synonym_array));
while( list($word_in, $search_matches) = @each($search_raw_words) )
|
|
From: Paul S. O. <ps...@us...> - 2002-01-25 00:48:43
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv26124
Modified Files:
search.php
Log Message:
Various updates to fix problems with large result sets ... code is quite messy, will clean up
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/search.php,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -r1.56 -r1.57
*** search.php 2002/01/14 14:16:54 1.56
--- search.php 2002/01/25 00:48:40 1.57
***************
*** 68,79 ****
$search_id = ( isset($HTTP_GET_VARS['search_id']) ) ? $HTTP_GET_VARS['search_id'] : "";
if( isset($HTTP_POST_VARS['addterms']) )
{
$search_all_terms = ( $HTTP_POST_VARS['addterms'] == "all" ) ? 1 : 0;
}
- else if( isset($HTTP_GET_VARS['addterms']) )
- {
- $search_all_terms = ( $HTTP_GET_VARS['addterms'] == "all" ) ? 1 : 0;
- }
[...983 lines suppressed...]
- {
- $message .= "<br /><br />_________________<br />" . $user_sig;
- }
-
$message = make_clickable($message);
--- 810,813 ----
***************
*** 1209,1213 ****
}
! $base_url = "search.$phpEx?search_id=$search_id&showresults=" . $show_results . "&sortby=" . $sortby . "&sortdir=" . $sortby_dir . "&charsreqd=" . $return_chars;
$template->assign_vars(array(
--- 1096,1100 ----
}
! $base_url = "search.$phpEx?search_id=$search_id";
$template->assign_vars(array(
|
|
From: Paul S. O. <ps...@us...> - 2002-01-25 00:39:19
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv23554/includes
Modified Files:
constants.php
Log Message:
Fix defines for warnings
Index: constants.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/constants.php,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -r1.42 -r1.43
*** constants.php 2002/01/13 15:30:03 1.42
--- constants.php 2002/01/25 00:39:16 1.43
***************
*** 3,8 ****
* includes.php
* -------------------
! * begin : Saturday, Feb 13, 2001
! * copyright : (C) 2001 The phpBB Group
* email : su...@ph...
*
--- 3,8 ----
* includes.php
* -------------------
! * begin : Saturday', Feb 13', 2001
! * copyright : ('C) 2001 The phpBB Group
* email : su...@ph...
*
***************
*** 16,143 ****
* 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.
*
***************************************************************************/
// Debug Level
! define(DEBUG, 1); // Debugging on
! //define(DEBUG, 0); // Debugging off
// User Levels <- Do not change the values of USER or ADMIN
! define(DELETED, -1);
! define(ANONYMOUS, -1);
! define(USER, 0);
! define(ADMIN, 1);
! define(MOD, 2);
// User related
! define(USER_ACTIVATION_NONE, 0);
! define(USER_ACTIVATION_SELF, 1);
! define(USER_ACTIVATION_ADMIN, 2);
!
! define(USER_AVATAR_NONE, 0);
! define(USER_AVATAR_UPLOAD, 1);
! define(USER_AVATAR_REMOTE, 2);
! define(USER_AVATAR_GALLERY, 3);
// Group settings
! define(GROUP_OPEN, 0);
! define(GROUP_CLOSED, 1);
! define(GROUP_HIDDEN, 2);
// Forum state
! define(FORUM_UNLOCKED, 0);
! define(FORUM_LOCKED, 1);
// Topic status
! define(TOPIC_UNLOCKED, 0);
! define(TOPIC_LOCKED, 1);
! define(TOPIC_MOVED, 2);
! define(TOPIC_WATCH_NOTIFIED, 1);
! define(TOPIC_WATCH_UN_NOTIFIED, 0);
// Topic types
! define(POST_NORMAL, 0);
! define(POST_STICKY, 1);
! define(POST_ANNOUNCE, 2);
! define(POST_GLOBAL_ANNOUNCE, 3);
// SQL codes
! define(BEGIN_TRANSACTION, 1);
! define(END_TRANSACTION, 2);
// Error codes
! define(GENERAL_MESSAGE, 200);
! define(GENERAL_ERROR, 202);
! define(CRITICAL_MESSAGE, 203);
! define(CRITICAL_ERROR, 204);
// Private messaging
! define(PRIVMSGS_READ_MAIL, 0);
! define(PRIVMSGS_NEW_MAIL, 1);
! define(PRIVMSGS_SENT_MAIL, 2);
! define(PRIVMSGS_SAVED_IN_MAIL, 3);
! define(PRIVMSGS_SAVED_OUT_MAIL, 4);
// URL PARAMETERS
! define(POST_TOPIC_URL, 't');
! define(POST_CAT_URL, 'c');
! define(POST_FORUM_URL, 'f');
! define(POST_USERS_URL, 'u');
! define(POST_POST_URL, 'p');
! define(POST_GROUPS_URL, 'g');
// Session parameters
! define(SESSION_METHOD_COOKIE, 100);
! define(SESSION_METHOD_GET, 101);
// Page numbers for session handling
! define(PAGE_INDEX, 0);
! define(PAGE_LOGIN, -1);
! define(PAGE_SEARCH, -2);
! define(PAGE_REGISTER, -3);
! define(PAGE_PROFILE, -4);
! define(PAGE_VIEWONLINE, -6);
! define(PAGE_VIEWMEMBERS, -7);
! define(PAGE_FAQ, -8);
! define(PAGE_POSTING, -9);
! define(PAGE_PRIVMSGS, -10);
! define(PAGE_GROUPCP, -11);
! define(PAGE_TOPIC_OFFSET, 5000);
// Auth settings
! define(AUTH_LIST_ALL, 0);
! define(AUTH_ALL, 0);
! define(AUTH_REG, 1);
! define(AUTH_ACL, 2);
! define(AUTH_MOD, 3);
! define(AUTH_ADMIN, 5);
!
! define(AUTH_VIEW, 1);
! define(AUTH_READ, 2);
! define(AUTH_POST, 3);
! define(AUTH_REPLY, 4);
! define(AUTH_EDIT, 5);
! define(AUTH_DELETE, 6);
! define(AUTH_ANNOUNCE, 7);
! define(AUTH_STICKY, 8);
! define(AUTH_POLLCREATE, 9);
! define(AUTH_VOTE, 10);
! define(AUTH_ATTACH, 11);
--- 16,143 ----
* 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.
*
***************************************************************************/
// Debug Level
! define('DEBUG', 1); // Debugging on
! //define('DEBUG', 0); // Debugging off
// User Levels <- Do not change the values of USER or ADMIN
! define('DELETED', -1);
! define('ANONYMOUS', -1);
! define('USER', 0);
! define('ADMIN', 1);
! define('MOD', 2);
// User related
! define('USER_ACTIVATION_NONE', 0);
! define('USER_ACTIVATION_SELF', 1);
! define('USER_ACTIVATION_ADMIN', 2);
!
! define('USER_AVATAR_NONE', 0);
! define('USER_AVATAR_UPLOAD', 1);
! define('USER_AVATAR_REMOTE', 2);
! define('USER_AVATAR_GALLERY', 3);
// Group settings
! define('GROUP_OPEN', 0);
! define('GROUP_CLOSED', 1);
! define('GROUP_HIDDEN', 2);
// Forum state
! define('FORUM_UNLOCKED', 0);
! define('FORUM_LOCKED', 1);
// Topic status
! define('TOPIC_UNLOCKED', 0);
! define('TOPIC_LOCKED', 1);
! define('TOPIC_MOVED', 2);
! define('TOPIC_WATCH_NOTIFIED', 1);
! define('TOPIC_WATCH_UN_NOTIFIED', 0);
// Topic types
! define('POST_NORMAL', 0);
! define('POST_STICKY', 1);
! define('POST_ANNOUNCE', 2);
! define('POST_GLOBAL_ANNOUNCE', 3);
// SQL codes
! define('BEGIN_TRANSACTION', 1);
! define('END_TRANSACTION', 2);
// Error codes
! define('GENERAL_MESSAGE', 200);
! define('GENERAL_ERROR', 202);
! define('CRITICAL_MESSAGE', 203);
! define('CRITICAL_ERROR', 204);
// Private messaging
! define('PRIVMSGS_READ_MAIL', 0);
! define('PRIVMSGS_NEW_MAIL', 1);
! define('PRIVMSGS_SENT_MAIL', 2);
! define('PRIVMSGS_SAVED_IN_MAIL', 3);
! define('PRIVMSGS_SAVED_OUT_MAIL', 4);
// URL PARAMETERS
! define('POST_TOPIC_URL', 't');
! define('POST_CAT_URL', 'c');
! define('POST_FORUM_URL', 'f');
! define('POST_USERS_URL', 'u');
! define('POST_POST_URL', 'p');
! define('POST_GROUPS_URL', 'g');
// Session parameters
! define('SESSION_METHOD_COOKIE', 100);
! define('SESSION_METHOD_GET', 101);
// Page numbers for session handling
! define('PAGE_INDEX', 0);
! define('PAGE_LOGIN', -1);
! define('PAGE_SEARCH', -2);
! define('PAGE_REGISTER', -3);
! define('PAGE_PROFILE', -4);
! define('PAGE_VIEWONLINE', -6);
! define('PAGE_VIEWMEMBERS', -7);
! define('PAGE_FAQ', -8);
! define('PAGE_POSTING', -9);
! define('PAGE_PRIVMSGS', -10);
! define('PAGE_GROUPCP', -11);
! define('PAGE_TOPIC_OFFSET', 5000);
// Auth settings
! define('AUTH_LIST_ALL', 0);
! define('AUTH_ALL', 0);
! define('AUTH_REG', 1);
! define('AUTH_ACL', 2);
! define('AUTH_MOD', 3);
! define('AUTH_ADMIN', 5);
!
! define('AUTH_VIEW', 1);
! define('AUTH_READ', 2);
! define('AUTH_POST', 3);
! define('AUTH_REPLY', 4);
! define('AUTH_EDIT', 5);
! define('AUTH_DELETE', 6);
! define('AUTH_ANNOUNCE', 7);
! define('AUTH_STICKY', 8);
! define('AUTH_POLLCREATE', 9);
! define('AUTH_VOTE', 10);
! define('AUTH_ATTACH', 11);
|
|
From: Jonathan H. <the...@us...> - 2002-01-24 15:32:10
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv24346
Modified Files:
admin_smilies.php
Log Message:
Fix for bug #505883
Index: admin_smilies.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_smilies.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** admin_smilies.php 2002/01/24 02:51:00 1.18
--- admin_smilies.php 2002/01/24 15:32:06 1.19
***************
*** 145,148 ****
--- 145,153 ----
for( $j = 2; $j < count($smile_data); $j++)
{
+ //
+ // Replace > and < with the proper html_entities for matching.
+ //
+ $smile_data[$j] = str_replace("<", "<", $smile_data[$j]);
+ $smile_data[$j] = str_replace(">", ">", $smile_data[$j]);
$k = $smile_data[$j];
***************
*** 397,400 ****
--- 402,410 ----
$smile_emotion = ( isset($HTTP_POST_VARS['smile_emotion']) ) ? $HTTP_POST_VARS['smile_emotion'] : $HTTP_GET_VARS['smile_emotion'];
$smile_id = ( isset($HTTP_POST_VARS['smile_id']) ) ? intval($HTTP_POST_VARS['smile_id']) : intval($HTTP_GET_VARS['smile_id']);
+ //
+ // Convert < and > to proper htmlentities for parsing.
+ //
+ $smile_code = str_replace('<', '<', $smile_code);
+ $smile_code = str_replace('>', '>', $smile_code);
//
***************
*** 429,432 ****
--- 439,448 ----
//
+ // Convert < and > to proper htmlentities for parsing.
+ //
+ $smile_code = str_replace('<', '<', $smile_code);
+ $smile_code = str_replace('>', '>', $smile_code);
+
+ //
// Save the data to the smiley table.
//
***************
*** 488,491 ****
--- 504,513 ----
for($i = 0; $i < count($smilies); $i++)
{
+ //
+ // Replace htmlentites for < and > with actual character.
+ //
+ $smilies[$i]['code'] = str_replace('<', '<', $smilies[$i]['code']);
+ $smilies[$i]['code'] = str_replace('>', '>', $smilies[$i]['code']);
+
$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
***************
*** 494,498 ****
"ROW_COLOR" => "#" . $row_color,
"ROW_CLASS" => $row_class,
!
"SMILEY_IMG" => $phpbb_root_path . $board_config['smilies_path'] . '/' . $smilies[$i]['smile_url'],
"CODE" => $smilies[$i]['code'],
--- 516,520 ----
"ROW_COLOR" => "#" . $row_color,
"ROW_CLASS" => $row_class,
!
"SMILEY_IMG" => $phpbb_root_path . $board_config['smilies_path'] . '/' . $smilies[$i]['smile_url'],
"CODE" => $smilies[$i]['code'],
***************
*** 515,517 ****
include('page_footer_admin.'.$phpEx);
! ?>
\ No newline at end of file
--- 537,539 ----
include('page_footer_admin.'.$phpEx);
! ?>
|
|
From: Jonathan H. <the...@us...> - 2002-01-24 15:31:22
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv24036
Modified Files:
admin_db_utilities.php
Log Message:
Fixed a bug in filetype detection for gzip in latest mozilla...
Index: admin_db_utilities.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_db_utilities.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** admin_db_utilities.php 2002/01/24 02:50:59 1.32
--- admin_db_utilities.php 2002/01/24 15:31:18 1.33
***************
*** 897,901 ****
if( file_exists($backup_file_tmpname) )
{
! if( preg_match("/^(text\/[a-zA-Z]+)|(application\/(x\-)?gzip\-compressed)|(application\/octet-stream)$/is", $backup_file_type) )
{
if( preg_match("/\.gz$/is",$backup_file_name) )
--- 897,901 ----
if( file_exists($backup_file_tmpname) )
{
! if( preg_match("/^(text\/[a-zA-Z]+)|(application\/(x\-)?gzip(\-compressed)?)|(application\/octet-stream)$/is", $backup_file_type) )
{
if( preg_match("/\.gz$/is",$backup_file_name) )
***************
*** 938,942 ****
{
include('page_header_admin.'.$phpEx);
! message_die(GENERAL_ERROR, $lang['Restore_Error_filename'] );
}
}
--- 938,942 ----
{
include('page_header_admin.'.$phpEx);
! message_die(GENERAL_ERROR, $lang['Restore_Error_filename'] ." $backup_file_type $backup_file_name");
}
}
|
|
From: Bart v. B. <ba...@us...> - 2002-01-24 09:23:30
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv26341
Modified Files:
admin_userauth.php
Log Message:
Changed setmodules == 1 to \!empty() to please Paul
Index: admin_userauth.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_userauth.php,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -r1.28 -r1.29
*** admin_userauth.php 2002/01/14 18:40:25 1.28
--- admin_userauth.php 2002/01/24 09:23:25 1.29
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
|
|
From: Paul S. O. <ps...@us...> - 2002-01-24 03:39:03
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv21369
Modified Files:
privmsg.php viewtopic.php
Log Message:
Fix global disallow sig still allows old sigs to display bug #501162
Index: privmsg.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/privmsg.php,v
retrieving revision 1.73
retrieving revision 1.74
diff -C2 -r1.73 -r1.74
*** privmsg.php 2002/01/14 20:16:09 1.73
--- privmsg.php 2002/01/24 03:39:00 1.74
***************
*** 493,497 ****
$bbcode_uid = $privmsg['privmsgs_bbcode_uid'];
! $user_sig = ( $privmsg['privmsgs_from_userid'] == $userdata['user_id'] ) ? $userdata['user_sig'] : $privmsg['user_sig'];
$user_sig_bbcode_uid = ( $privmsg['privmsgs_from_userid'] == $userdata['user_id'] ) ? $userdata['user_sig_bbcode_uid'] : $privmsg['user_sig_bbcode_uid'];
--- 493,504 ----
$bbcode_uid = $privmsg['privmsgs_bbcode_uid'];
! if( $board_config['allow_sig'] )
! {
! $user_sig = ( $privmsg['privmsgs_from_userid'] == $userdata['user_id'] ) ? $userdata['user_sig'] : $privmsg['user_sig'];
! }
! else
! {
! $user_sig = "";
! }
$user_sig_bbcode_uid = ( $privmsg['privmsgs_from_userid'] == $userdata['user_id'] ) ? $userdata['user_sig_bbcode_uid'] : $privmsg['user_sig_bbcode_uid'];
***************
*** 859,863 ****
$attach_sig = ( $submit || $refresh ) ? ( ( !empty($HTTP_POST_VARS['attach_sig']) ) ? TRUE : 0 ) : $userdata['user_attachsig'];
! $user_sig = ( $userdata['user_sig'] != "" ) ? $userdata['user_sig'] : "";
if( $submit && $mode != "edit" )
--- 866,870 ----
$attach_sig = ( $submit || $refresh ) ? ( ( !empty($HTTP_POST_VARS['attach_sig']) ) ? TRUE : 0 ) : $userdata['user_attachsig'];
! $user_sig = ( $userdata['user_sig'] != "" && $board_config['allow_sig'] ) ? $userdata['user_sig'] : "";
if( $submit && $mode != "edit" )
***************
*** 1128,1132 ****
$page_title = $lang['Send_new_privmsg'];
! $user_sig = ( $userdata['user_sig'] != "" ) ? $userdata['user_sig'] : "";
}
--- 1135,1139 ----
$page_title = $lang['Send_new_privmsg'];
! $user_sig = ( $userdata['user_sig'] != "" && $board_config['allow_sig'] ) ? $userdata['user_sig'] : "";
}
***************
*** 1135,1139 ****
$page_title = $lang['Reply_privmsg'];
! $user_sig = ( $userdata['user_sig'] != "" ) ? $userdata['user_sig'] : "";
}
--- 1142,1146 ----
$page_title = $lang['Reply_privmsg'];
! $user_sig = ( $userdata['user_sig'] != "" && $board_config['allow_sig'] ) ? $userdata['user_sig'] : "";
}
***************
*** 1155,1159 ****
}
! $user_sig = ( $postrow['user_sig'] != "" ) ? $postrow['user_sig'] : "";
}
else
--- 1162,1166 ----
}
! $user_sig = ( $postrow['user_sig'] != "" && $board_config['allow_sig'] ) ? $postrow['user_sig'] : "";
}
else
***************
*** 1255,1259 ****
$privmsg_message = preg_replace('#</textarea>#si', '</textarea>', $privmsg_message);
! $user_sig = $privmsg['user_sig'];
$to_username = $privmsg['username'];
--- 1262,1266 ----
$privmsg_message = preg_replace('#</textarea>#si', '</textarea>', $privmsg_message);
! $user_sig = ( $board_config['allow_sig'] ) ? $privmsg['user_sig'] : "";
$to_username = $privmsg['username'];
Index: viewtopic.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v
retrieving revision 1.165
retrieving revision 1.166
diff -C2 -r1.165 -r1.166
*** viewtopic.php 2002/01/24 03:05:32 1.165
--- viewtopic.php 2002/01/24 03:39:00 1.166
***************
*** 984,988 ****
$bbcode_uid = $postrow[$i]['bbcode_uid'];
! $user_sig = ( $postrow[$i]['enable_sig'] && $postrow[$i]['user_sig'] != "" ) ? $postrow[$i]['user_sig'] : "";
$user_sig_bbcode_uid = $postrow[$i]['user_sig_bbcode_uid'];
--- 984,988 ----
$bbcode_uid = $postrow[$i]['bbcode_uid'];
! $user_sig = ( $postrow[$i]['enable_sig'] && $postrow[$i]['user_sig'] != "" && $board_config['allow_sig'] ) ? $postrow[$i]['user_sig'] : "";
$user_sig_bbcode_uid = $postrow[$i]['user_sig_bbcode_uid'];
|
|
From: Paul S. O. <ps...@us...> - 2002-01-24 03:26:11
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv18885/includes
Modified Files:
post.php
Log Message:
Fix lack of starttime in emoticons page causing huge page gen time
Index: post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/post.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** post.php 2001/12/29 15:18:28 1.12
--- post.php 2002/01/24 03:26:08 1.13
***************
*** 105,109 ****
{
global $db, $board_config, $template, $lang, $images, $theme, $phpEx;
! global $user_ip, $session_length;
global $userdata;
--- 105,109 ----
{
global $db, $board_config, $template, $lang, $images, $theme, $phpEx;
! global $user_ip, $session_length, $starttime;
global $userdata;
|
|
From: Paul S. O. <ps...@us...> - 2002-01-24 03:19:39
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv16951
Modified Files:
profile.php
Log Message:
This version has an added advantage ... it works ... I think.
Index: profile.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/profile.php,v
retrieving revision 1.170
retrieving revision 1.171
diff -C2 -r1.170 -r1.171
*** profile.php 2002/01/24 03:05:32 1.170
--- profile.php 2002/01/24 03:19:36 1.171
***************
*** 1289,1294 ****
$allowviewonline = $userdata['user_allow_viewonline'];
! $user_avatar = $userdata['user_avatar'];
! $user_avatar_type = $userdata['user_avatar_type'];
$user_style = $userdata['user_style'];
$user_lang = $userdata['user_lang'];
--- 1289,1295 ----
$allowviewonline = $userdata['user_allow_viewonline'];
! $user_avatar = ( $userdata['user_allowavatar'] ) ? $userdata['user_avatar'] : "";
! $user_avatar_type = ( $userdata['user_allowavatar'] ) ? $userdata['user_avatar_type'] : USER_AVATAR_NONE;
!
$user_style = $userdata['user_style'];
$user_lang = $userdata['user_lang'];
***************
*** 1467,1470 ****
--- 1468,1472 ----
$signature = preg_replace("/\:[0-9a-z\:]*?\]/si", "]", $signature);
+ $avatar_img = "";
if( $user_avatar_type )
{
***************
*** 1472,1488 ****
{
case USER_AVATAR_UPLOAD:
! $avatar_img = "<img src=\"" . $board_config['avatar_path'] . "/" . $user_avatar . "\" alt=\"\" />";
break;
case USER_AVATAR_REMOTE:
! $avatar_img = "<img src=\"$user_avatar\" alt=\"\" />";
break;
case USER_AVATAR_GALLERY:
! $avatar_img = "<img src=\"" . $board_config['avatar_gallery_path'] . "/" . $user_avatar . "\" alt=\"\" />";
break;
}
- }
- else
- {
- $avatar_img = "";
}
--- 1474,1486 ----
{
case USER_AVATAR_UPLOAD:
! $avatar_img = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . "/" . $user_avatar . '" alt="" />' : '';
break;
case USER_AVATAR_REMOTE:
! $avatar_img = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $user_avatar . '" alt="" />' : '';
break;
case USER_AVATAR_GALLERY:
! $avatar_img = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . "/" . $user_avatar . '" alt="" />' : '';
break;
}
}
|
|
From: Paul S. O. <ps...@us...> - 2002-01-24 03:05:37
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv14716
Modified Files:
profile.php viewtopic.php
Log Message:
Fix admin disable avatar yet still shows bug #506070
Index: profile.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/profile.php,v
retrieving revision 1.169
retrieving revision 1.170
diff -C2 -r1.169 -r1.170
*** profile.php 2002/01/24 02:46:15 1.169
--- profile.php 2002/01/24 03:05:32 1.170
***************
*** 269,272 ****
--- 269,273 ----
}
+ $avatar_img = "";
if( $profiledata['user_avatar_type'] && $profiledata['user_allowavatar'] )
{
***************
*** 274,290 ****
{
case USER_AVATAR_UPLOAD:
! $avatar_img = '<img src="' . $board_config['avatar_path'] . '/' . $profiledata['user_avatar'] . '" alt="" />';
break;
case USER_AVATAR_REMOTE:
! $avatar_img = '<img src="' . $profiledata['user_avatar'] . '" alt="" />';
break;
case USER_AVATAR_GALLERY:
! $avatar_img = '<img src="' . $board_config['avatar_gallery_path'] . '/' . $profiledata['user_avatar'] . '" alt="" />';
break;
}
- }
- else
- {
- $avatar_img = "";
}
--- 275,287 ----
{
case USER_AVATAR_UPLOAD:
! $avatar_img = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . "/" . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
break;
case USER_AVATAR_REMOTE:
! $avatar_img = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
break;
case USER_AVATAR_GALLERY:
! $avatar_img = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . '/' . $profiledata['user_avatar'] . '" alt="" border="0" />' : '';
break;
}
}
Index: viewtopic.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v
retrieving revision 1.164
retrieving revision 1.165
diff -C2 -r1.164 -r1.165
*** viewtopic.php 2002/01/16 21:29:06 1.164
--- viewtopic.php 2002/01/24 03:05:32 1.165
***************
*** 817,820 ****
--- 817,821 ----
$poster_joined = ( $postrow[$i]['user_id'] != ANONYMOUS ) ? $lang['Joined'] . ": " . create_date($lang['DATE_FORMAT'], $postrow[$i]['user_regdate'], $board_config['board_timezone']) : "";
+ $poster_avatar = "";
if( $postrow[$i]['user_avatar_type'] && $poster_id != ANONYMOUS && $postrow[$i]['user_allowavatar'] )
{
***************
*** 822,838 ****
{
case USER_AVATAR_UPLOAD:
! $poster_avatar = '<img src="' . $board_config['avatar_path'] . "/" . $postrow[$i]['user_avatar'] . '" alt="" border="0" />';
break;
case USER_AVATAR_REMOTE:
! $poster_avatar = '<img src="' . $postrow[$i]['user_avatar'] . "\" alt=\"\" border=\"0\" />";
break;
case USER_AVATAR_GALLERY:
! $poster_avatar = '<img src="' . $board_config['avatar_gallery_path'] . "/" . $postrow[$i]['user_avatar'] . '" alt="" border="0" />';
break;
}
- }
- else
- {
- $poster_avatar = "";
}
--- 823,835 ----
{
case USER_AVATAR_UPLOAD:
! $poster_avatar = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . "/" . $postrow[$i]['user_avatar'] . '" alt="" border="0" />' : '';
break;
case USER_AVATAR_REMOTE:
! $poster_avatar = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $postrow[$i]['user_avatar'] . '" alt="" border="0" />' : '';
break;
case USER_AVATAR_GALLERY:
! $poster_avatar = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . "/" . $postrow[$i]['user_avatar'] . '" alt="" border="0" />' : '';
break;
}
}
|
|
From: Paul S. O. <ps...@us...> - 2002-01-24 02:59:24
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv13253/includes
Modified Files:
page_header.php
Log Message:
Fix HTML span color bug #507545
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -r1.89 -r1.90
*** page_header.php 2002/01/16 17:15:02 1.89
--- page_header.php 2002/01/24 02:59:21 1.90
***************
*** 129,138 ****
{
$row['username'] = '<b>' . $row['username'] . '</b>';
! $style_color = 'style="color:' . $theme['fontcolor3'] . '"';
}
else if( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
! $style_color = 'style="color:' . $theme['fontcolor2'] . '"';
}
--- 129,138 ----
{
$row['username'] = '<b>' . $row['username'] . '</b>';
! $style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
}
else if( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
! $style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
}
|
|
From: Paul S. O. <ps...@us...> - 2002-01-24 02:51:03
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv11675/admin
Modified Files:
admin_board.php admin_db_utilities.php admin_disallow.php
admin_forum_prune.php admin_forumauth.php admin_forums.php
admin_groups.php admin_mass_email.php admin_ranks.php
admin_smilies.php admin_styles.php admin_user_ban.php
admin_users.php admin_words.php
Log Message:
Change setmodules == 1 to !empty($setmodules), stop it complaining if it isn't set ... can someone do this for userauth, my copy is modified at present
Index: admin_board.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_board.php,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** admin_board.php 2001/12/24 13:05:00 1.38
--- admin_board.php 2002/01/24 02:50:59 1.39
***************
*** 12,16 ****
***************************************************************************/
! if($setmodules == 1)
{
$file = basename(__FILE__);
--- 12,16 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$file = basename(__FILE__);
Index: admin_db_utilities.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_db_utilities.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** admin_db_utilities.php 2002/01/11 17:01:31 1.31
--- admin_db_utilities.php 2002/01/24 02:50:59 1.32
***************
*** 29,33 ****
***************************************************************************/
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 29,33 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_disallow.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_disallow.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** admin_disallow.php 2001/12/24 13:05:00 1.4
--- admin_disallow.php 2002/01/24 02:51:00 1.5
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_forum_prune.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_forum_prune.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** admin_forum_prune.php 2002/01/03 22:32:37 1.15
--- admin_forum_prune.php 2002/01/24 02:51:00 1.16
***************
*** 33,37 ****
//
! if( $setmodules == 1 )
{
$filename = basename(__FILE__);
--- 33,37 ----
//
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_forumauth.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_forumauth.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** admin_forumauth.php 2002/01/21 15:15:10 1.18
--- admin_forumauth.php 2002/01/24 02:51:00 1.19
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_forums.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_forums.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -r1.36 -r1.37
*** admin_forums.php 2002/01/19 20:35:19 1.36
--- admin_forums.php 2002/01/24 02:51:00 1.37
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules==1)
{
$file = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$file = basename(__FILE__);
Index: admin_groups.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_groups.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** admin_groups.php 2002/01/10 14:08:59 1.19
--- admin_groups.php 2002/01/24 02:51:00 1.20
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_mass_email.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_mass_email.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** admin_mass_email.php 2001/12/24 13:12:29 1.10
--- admin_mass_email.php 2002/01/24 02:51:00 1.11
***************
*** 20,24 ****
***************************************************************************/
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 20,24 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_ranks.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_ranks.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** admin_ranks.php 2002/01/03 02:27:31 1.9
--- admin_ranks.php 2002/01/24 02:51:00 1.10
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$file = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$file = basename(__FILE__);
Index: admin_smilies.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_smilies.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** admin_smilies.php 2001/12/24 13:30:34 1.17
--- admin_smilies.php 2002/01/24 02:51:00 1.18
***************
*** 27,31 ****
// First we do the setmodules stuff for the admin cp.
//
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 27,31 ----
// First we do the setmodules stuff for the admin cp.
//
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_styles.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_styles.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** admin_styles.php 2002/01/23 19:08:01 1.17
--- admin_styles.php 2002/01/24 02:51:00 1.18
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$file = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$file = basename(__FILE__);
Index: admin_user_ban.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_user_ban.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** admin_user_ban.php 2001/12/24 13:20:25 1.15
--- admin_user_ban.php 2002/01/24 02:51:00 1.16
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_users.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_users.php,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** admin_users.php 2002/01/22 19:47:48 1.39
--- admin_users.php 2002/01/24 02:51:00 1.40
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$filename = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$filename = basename(__FILE__);
Index: admin_words.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_words.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** admin_words.php 2001/12/24 13:35:09 1.7
--- admin_words.php 2002/01/24 02:51:00 1.8
***************
*** 21,25 ****
***************************************************************************/
! if($setmodules == 1)
{
$file = basename(__FILE__);
--- 21,25 ----
***************************************************************************/
! if( !empty($setmodules) )
{
$file = basename(__FILE__);
|
|
From: Paul S. O. <ps...@us...> - 2002-01-24 02:46:18
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv10597
Modified Files:
profile.php
Log Message:
Fix smiley default bug #507777 (thanks hsim) plus fixes for other default (on register) settings.
Index: profile.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/profile.php,v
retrieving revision 1.168
retrieving revision 1.169
diff -C2 -r1.168 -r1.169
*** profile.php 2002/01/21 14:37:53 1.168
--- profile.php 2002/01/24 02:46:15 1.169
***************
*** 465,485 ****
}
! $username = (!empty($HTTP_POST_VARS['username'])) ? trim(strip_tags(str_replace(" ", " ", $HTTP_POST_VARS['username']))) : "";
! $email = (!empty($HTTP_POST_VARS['email'])) ? trim(strip_tags(htmlspecialchars(str_replace(" ", " ",$HTTP_POST_VARS['email'])))) : "";
! $password_current = (!empty($HTTP_POST_VARS['cur_password'])) ? trim($HTTP_POST_VARS['cur_password']) : "";
! $password = (!empty($HTTP_POST_VARS['new_password'])) ? trim($HTTP_POST_VARS['new_password']) : "";
! $password_confirm = (!empty($HTTP_POST_VARS['password_confirm'])) ? trim($HTTP_POST_VARS['password_confirm']) : "";
!
! $icq = (!empty($HTTP_POST_VARS['icq'])) ? trim(strip_tags($HTTP_POST_VARS['icq'])) : "";
! $aim = (!empty($HTTP_POST_VARS['aim'])) ? trim(strip_tags($HTTP_POST_VARS['aim'])) : "";
! $msn = (!empty($HTTP_POST_VARS['msn'])) ? trim(strip_tags($HTTP_POST_VARS['msn'])) : "";
! $yim = (!empty($HTTP_POST_VARS['yim'])) ? trim(strip_tags($HTTP_POST_VARS['yim'])) : "";
!
! $website = (!empty($HTTP_POST_VARS['website'])) ? trim(strip_tags($HTTP_POST_VARS['website'])) : "";
! $location = (!empty($HTTP_POST_VARS['location'])) ? trim(strip_tags($HTTP_POST_VARS['location'])) : "";
! $occupation = (!empty($HTTP_POST_VARS['occupation'])) ? trim(strip_tags($HTTP_POST_VARS['occupation'])) : "";
! $interests = (!empty($HTTP_POST_VARS['interests'])) ? trim(strip_tags($HTTP_POST_VARS['interests'])) : "";
! $signature = (!empty($HTTP_POST_VARS['signature'])) ? trim(str_replace("<br />", "\n", $HTTP_POST_VARS['signature'])) : "";
// Run some validation on the optional fields. These are pass-by-ref, so they'll be changed to
--- 465,485 ----
}
! $username = ( !empty($HTTP_POST_VARS['username']) ) ? trim(strip_tags(str_replace(" ", " ", $HTTP_POST_VARS['username']))) : "";
! $email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars(str_replace(" ", " ",$HTTP_POST_VARS['email'])))) : "";
! $password_current = ( !empty($HTTP_POST_VARS['cur_password']) ) ? trim($HTTP_POST_VARS['cur_password']) : "";
! $password = ( !empty($HTTP_POST_VARS['new_password']) ) ? trim($HTTP_POST_VARS['new_password']) : "";
! $password_confirm = ( !empty($HTTP_POST_VARS['password_confirm']) ) ? trim($HTTP_POST_VARS['password_confirm']) : "";
!
! $icq = ( !empty($HTTP_POST_VARS['icq']) ) ? trim(strip_tags($HTTP_POST_VARS['icq'])) : "";
! $aim = ( !empty($HTTP_POST_VARS['aim']) ) ? trim(strip_tags($HTTP_POST_VARS['aim'])) : "";
! $msn = ( !empty($HTTP_POST_VARS['msn']) ) ? trim(strip_tags($HTTP_POST_VARS['msn'])) : "";
! $yim = ( !empty($HTTP_POST_VARS['yim']) ) ? trim(strip_tags($HTTP_POST_VARS['yim'])) : "";
!
! $website = ( !empty($HTTP_POST_VARS['website']) ) ? trim(strip_tags($HTTP_POST_VARS['website'])) : "";
! $location = ( !empty($HTTP_POST_VARS['location']) ) ? trim(strip_tags($HTTP_POST_VARS['location'])) : "";
! $occupation = ( !empty($HTTP_POST_VARS['occupation']) ) ? trim(strip_tags($HTTP_POST_VARS['occupation'])) : "";
! $interests = ( !empty($HTTP_POST_VARS['interests']) ) ? trim(strip_tags($HTTP_POST_VARS['interests'])) : "";
! $signature = ( !empty($HTTP_POST_VARS['signature']) ) ? trim(str_replace("<br />", "\n", $HTTP_POST_VARS['signature'])) : "";
// Run some validation on the optional fields. These are pass-by-ref, so they'll be changed to
***************
*** 487,515 ****
validate_optional_fields($icq, $aim, $msn, $yim, $website, $location, $occupation, $interests, $signature);
! $viewemail = (isset($HTTP_POST_VARS['viewemail'])) ? ( ($HTTP_POST_VARS['viewemail']) ? TRUE : 0 ) : 0;
! $allowviewonline = (isset($HTTP_POST_VARS['hideonline'])) ? ( ($HTTP_POST_VARS['hideonline']) ? 0 : TRUE ) : TRUE;
! $notifyreply = (isset($HTTP_POST_VARS['notifyreply'])) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : 0;
! $notifypm = (isset($HTTP_POST_VARS['notifypm'])) ? ( ($HTTP_POST_VARS['notifypm']) ? TRUE : 0 ) : TRUE;
! $popuppm = (isset($HTTP_POST_VARS['popup_pm'])) ? ( ($HTTP_POST_VARS['popup_pm']) ? TRUE : 0 ) : TRUE;
! $attachsig = (isset($HTTP_POST_VARS['attachsig'])) ? ( ($HTTP_POST_VARS['attachsig']) ? TRUE : 0 ) : 0;
!
! $allowhtml = (isset($HTTP_POST_VARS['allowhtml'])) ? ( ($HTTP_POST_VARS['allowhtml']) ? TRUE : 0 ) : $userdata['user_allowhtml'];
! $allowbbcode = (isset($HTTP_POST_VARS['allowbbcode'])) ? ( ($HTTP_POST_VARS['allowbbcode']) ? TRUE : 0 ) : $userdata['user_allowbbcode'];
! $allowsmilies = (isset($HTTP_POST_VARS['allowsmilies'])) ? ( ($HTTP_POST_VARS['allowsmilies']) ? TRUE : 0 ) : $userdata['user_allowsmilies'];
$user_style = ( isset($HTTP_POST_VARS['style']) ) ? intval($HTTP_POST_VARS['style']) : $board_config['default_style'];
! $user_lang = ($HTTP_POST_VARS['language']) ? $HTTP_POST_VARS['language'] : $board_config['default_lang'];
! $user_timezone = (isset($HTTP_POST_VARS['timezone'])) ? doubleval($HTTP_POST_VARS['timezone']) : $board_config['board_timezone'];
! $user_dateformat = ($HTTP_POST_VARS['dateformat']) ? trim($HTTP_POST_VARS['dateformat']) : $board_config['default_dateformat'];
$user_avatar_local = ( isset($HTTP_POST_VARS['avatarselect']) && !empty($HTTP_POST_VARS['submitavatar']) && $board_config['allow_avatar_local'] ) ? $HTTP_POST_VARS['avatarselect'] : ( ( isset($HTTP_POST_VARS['avatarlocal']) ) ? $HTTP_POST_VARS['avatarlocal'] : "" );
! $user_avatar_remoteurl = (!empty($HTTP_POST_VARS['avatarremoteurl'])) ? trim($HTTP_POST_VARS['avatarremoteurl']) : "";
! $user_avatar_url = (!empty($HTTP_POST_VARS['avatarurl'])) ? trim($HTTP_POST_VARS['avatarurl']) : "";
! $user_avatar_loc = ($HTTP_POST_FILES['avatar']['tmp_name'] != "none") ? $HTTP_POST_FILES['avatar']['tmp_name'] : "";
! $user_avatar_name = (!empty($HTTP_POST_FILES['avatar']['name'])) ? $HTTP_POST_FILES['avatar']['name'] : "";
! $user_avatar_size = (!empty($HTTP_POST_FILES['avatar']['size'])) ? $HTTP_POST_FILES['avatar']['size'] : 0;
! $user_avatar_filetype = (!empty($HTTP_POST_FILES['avatar']['type'])) ? $HTTP_POST_FILES['avatar']['type'] : "";
$user_avatar = ( empty($user_avatar_loc) && $mode == "editprofile" ) ? $userdata['user_avatar'] : "";
--- 487,527 ----
validate_optional_fields($icq, $aim, $msn, $yim, $website, $location, $occupation, $interests, $signature);
! $viewemail = ( isset($HTTP_POST_VARS['viewemail']) ) ? ( ($HTTP_POST_VARS['viewemail']) ? TRUE : 0 ) : 0;
! $allowviewonline = ( isset($HTTP_POST_VARS['hideonline']) ) ? ( ($HTTP_POST_VARS['hideonline']) ? 0 : TRUE ) : TRUE;
! $notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : 0;
! $notifypm = ( isset($HTTP_POST_VARS['notifypm']) ) ? ( ($HTTP_POST_VARS['notifypm']) ? TRUE : 0 ) : TRUE;
! $popuppm = ( isset($HTTP_POST_VARS['popup_pm']) ) ? ( ($HTTP_POST_VARS['popup_pm']) ? TRUE : 0 ) : TRUE;
!
! if( $mode == "register" )
! {
! $attachsig = ( isset($HTTP_POST_VARS['attachsig']) ) ? ( ($HTTP_POST_VARS['attachsig']) ? TRUE : 0 ) : $board_config['allow_sig'];
!
! $allowhtml = ( isset($HTTP_POST_VARS['allowhtml']) ) ? ( ($HTTP_POST_VARS['allowhtml']) ? TRUE : 0 ) : $board_config['allow_html'];
! $allowbbcode = ( isset($HTTP_POST_VARS['allowbbcode']) ) ? ( ($HTTP_POST_VARS['allowbbcode']) ? TRUE : 0 ) : $board_config['allow_bbcode'];
! $allowsmilies = ( isset($HTTP_POST_VARS['allowsmilies']) ) ? ( ($HTTP_POST_VARS['allowsmilies']) ? TRUE : 0 ) : $board_config['allow_smilies'];
! }
! else
! {
! $attachsig = ( isset($HTTP_POST_VARS['attachsig']) ) ? ( ($HTTP_POST_VARS['attachsig']) ? TRUE : 0 ) : 0;
!
! $allowhtml = ( isset($HTTP_POST_VARS['allowhtml']) ) ? ( ($HTTP_POST_VARS['allowhtml']) ? TRUE : 0 ) : $userdata['user_allowhtml'];
! $allowbbcode = ( isset($HTTP_POST_VARS['allowbbcode']) ) ? ( ($HTTP_POST_VARS['allowbbcode']) ? TRUE : 0 ) : $userdata['user_allowbbcode'];
! $allowsmilies = ( isset($HTTP_POST_VARS['allowsmilies']) ) ? ( ($HTTP_POST_VARS['allowsmilies']) ? TRUE : 0 ) : $userdata['user_allowsmiles'];
! }
$user_style = ( isset($HTTP_POST_VARS['style']) ) ? intval($HTTP_POST_VARS['style']) : $board_config['default_style'];
! $user_lang = ( !empty($HTTP_POST_VARS['language']) ) ? $HTTP_POST_VARS['language'] : $board_config['default_lang'];
! $user_timezone = ( isset($HTTP_POST_VARS['timezone']) ) ? doubleval($HTTP_POST_VARS['timezone']) : $board_config['board_timezone'];
! $user_dateformat = ( !empty($HTTP_POST_VARS['dateformat']) ) ? trim($HTTP_POST_VARS['dateformat']) : $board_config['default_dateformat'];
$user_avatar_local = ( isset($HTTP_POST_VARS['avatarselect']) && !empty($HTTP_POST_VARS['submitavatar']) && $board_config['allow_avatar_local'] ) ? $HTTP_POST_VARS['avatarselect'] : ( ( isset($HTTP_POST_VARS['avatarlocal']) ) ? $HTTP_POST_VARS['avatarlocal'] : "" );
! $user_avatar_remoteurl = ( !empty($HTTP_POST_VARS['avatarremoteurl']) ) ? trim($HTTP_POST_VARS['avatarremoteurl']) : "";
! $user_avatar_url = ( !empty($HTTP_POST_VARS['avatarurl']) ) ? trim($HTTP_POST_VARS['avatarurl']) : "";
! $user_avatar_loc = ( $HTTP_POST_FILES['avatar']['tmp_name'] != "none") ? $HTTP_POST_FILES['avatar']['tmp_name'] : "";
! $user_avatar_name = ( !empty($HTTP_POST_FILES['avatar']['name']) ) ? $HTTP_POST_FILES['avatar']['name'] : "";
! $user_avatar_size = ( !empty($HTTP_POST_FILES['avatar']['size']) ) ? $HTTP_POST_FILES['avatar']['size'] : 0;
! $user_avatar_filetype = ( !empty($HTTP_POST_FILES['avatar']['type']) ) ? $HTTP_POST_FILES['avatar']['type'] : "";
$user_avatar = ( empty($user_avatar_loc) && $mode == "editprofile" ) ? $userdata['user_avatar'] : "";
|
|
From: Bart v. B. <ba...@us...> - 2002-01-23 20:48:00
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv28600
Modified Files:
overall_header.tpl
Log Message:
Fixed XHTML compliance for <style> tag (#507689)
Index: overall_header.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/overall_header.tpl,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** overall_header.tpl 2002/01/17 19:14:58 1.21
--- overall_header.tpl 2002/01/23 20:47:56 1.22
***************
*** 8,12 ****
{NAV_LINKS}
<title>{SITENAME} :: {PAGE_TITLE}</title>
! <link rel="stylesheet" href="templates/subSilver/{T_HEAD_STYLESHEET}" type="text/css">
<style type="text/css">
<!--
--- 8,12 ----
{NAV_LINKS}
<title>{SITENAME} :: {PAGE_TITLE}</title>
! <link rel="stylesheet" href="templates/subSilver/{T_HEAD_STYLESHEET}" type="text/css" />
<style type="text/css">
<!--
|