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-04-03 00:29:58
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv18620/admin
Modified Files:
admin_forum_prune.php
Log Message:
Various updates with any luck they fix a few minor issues without causing new ones ...
Index: admin_forum_prune.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_forum_prune.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** admin_forum_prune.php 22 Mar 2002 17:00:32 -0000 1.20
--- admin_forum_prune.php 2 Apr 2002 14:04:18 -0000 1.21
***************
*** 20,24 ****
***************************************************************************/
! define('IN_PHPBB', 1);
if ( !empty($setmodules) )
--- 20,24 ----
***************************************************************************/
! define('IN_PHPBB', true);
if ( !empty($setmodules) )
***************
*** 33,37 ****
// Load default header
//
! $phpbb_root_path = "../";
require($phpbb_root_path . 'extension.inc');
require('pagestart.' . $phpEx);
--- 33,37 ----
// Load default header
//
! $phpbb_root_path = '../';
require($phpbb_root_path . 'extension.inc');
require('pagestart.' . $phpEx);
***************
*** 48,52 ****
if( $forum_id == -1 )
{
! $forum_sql = "";
}
else
--- 48,52 ----
if( $forum_id == -1 )
{
! $forum_sql = '';
}
else
***************
*** 58,63 ****
else
{
! $forum_id = "";
! $forum_sql = "";
}
//
--- 58,63 ----
else
{
! $forum_id = '';
! $forum_sql = '';
}
//
***************
*** 91,95 ****
$template->set_filenames(array(
! "body" => "admin/forum_prune_result_body.tpl")
);
--- 91,95 ----
$template->set_filenames(array(
! 'body' => 'admin/forum_prune_result_body.tpl')
);
***************
*** 97,101 ****
{
$p_result = prune($forum_rows[$i]['forum_id'], $prunedate);
- sync('forum', $forum_rows[$i]['forum_id']);
$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
--- 97,100 ----
|
|
From: Paul S. O. <ps...@us...> - 2002-04-03 00:29:43
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv18447/includes
Modified Files:
functions_post.php functions_search.php
Log Message:
Various updates with any luck they fix a few minor issues without causing new ones ...
Index: functions_post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions_post.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** functions_post.php 25 Mar 2002 13:03:55 -0000 1.6
--- functions_post.php 2 Apr 2002 14:03:49 -0000 1.7
***************
*** 528,532 ****
{
$sql = "DELETE FROM " . TOPICS_TABLE . "
! WHERE topic_id = $topic_id";
if ( !($db->sql_query($sql)) )
{
--- 528,533 ----
{
$sql = "DELETE FROM " . TOPICS_TABLE . "
! WHERE topic_id = $topic_id
! OR topic_moved_id = $topic_id";
if ( !($db->sql_query($sql)) )
{
Index: functions_search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions_search.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** functions_search.php 31 Mar 2002 00:06:34 -0000 1.7
--- functions_search.php 2 Apr 2002 14:03:49 -0000 1.8
***************
*** 207,211 ****
$sql = "INSERT INTO " . SEARCH_WORD_TABLE . " (word_text)
VALUES ('" . $word[$i] . "')";
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql);
--- 207,211 ----
$sql = "INSERT INTO " . SEARCH_WORD_TABLE . " (word_text)
VALUES ('" . $word[$i] . "')";
! if( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql);
***************
*** 231,235 ****
}
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql);
--- 231,235 ----
}
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql);
***************
*** 248,252 ****
FROM " . SEARCH_WORD_TABLE . "
WHERE word_text IN ($match_sql)";
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not insert new word matches', '', __LINE__, __FILE__, $sql);
--- 248,252 ----
FROM " . SEARCH_WORD_TABLE . "
WHERE word_text IN ($match_sql)";
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not insert new word matches', '', __LINE__, __FILE__, $sql);
***************
*** 315,319 ****
$common_word_id .= ( ( $common_word_id != '' ) ? ', ' : '' ) . $row['word_id'];
}
-
$db->sql_freeresult($result);
--- 315,318 ----
***************
*** 323,327 ****
SET word_common = " . TRUE . "
WHERE word_id IN ($common_word_id)";
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not delete word list entry', '', __LINE__, __FILE__, $sql);
--- 322,326 ----
SET word_common = " . TRUE . "
WHERE word_id IN ($common_word_id)";
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not delete word list entry', '', __LINE__, __FILE__, $sql);
***************
*** 330,334 ****
$sql = "DELETE FROM " . SEARCH_MATCH_TABLE . "
WHERE word_id IN ($common_word_id)";
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not delete word match entry', '', __LINE__, __FILE__, $sql);
--- 329,333 ----
$sql = "DELETE FROM " . SEARCH_MATCH_TABLE . "
WHERE word_id IN ($common_word_id)";
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not delete word match entry', '', __LINE__, __FILE__, $sql);
***************
*** 379,383 ****
$sql = "DELETE FROM " . SEARCH_WORD_TABLE . "
WHERE word_id IN ($word_id_sql)";
! if ( !($result = $db->sql_query($sql, END_TRANSACTION)) )
{
message_die(GENERAL_ERROR, 'Could not delete word list entry', '', __LINE__, __FILE__, $sql);
--- 378,382 ----
$sql = "DELETE FROM " . SEARCH_WORD_TABLE . "
WHERE word_id IN ($word_id_sql)";
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not delete word list entry', '', __LINE__, __FILE__, $sql);
***************
*** 404,408 ****
HAVING COUNT(word_id) = 1
)";
! if ( !($result = $db->sql_query($sql, END_TRANSACTION)) )
{
message_die(GENERAL_ERROR, 'Could not delete old words from word table', '', __LINE__, __FILE__, $sql);
--- 403,407 ----
HAVING COUNT(word_id) = 1
)";
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not delete old words from word table', '', __LINE__, __FILE__, $sql);
***************
*** 416,420 ****
$sql = "DELETE FROM " . SEARCH_MATCH_TABLE . "
WHERE post_id IN ($post_id_sql)";
! if ( !($db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql);
--- 415,419 ----
$sql = "DELETE FROM " . SEARCH_MATCH_TABLE . "
WHERE post_id IN ($post_id_sql)";
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql);
***************
*** 458,461 ****
--- 457,461 ----
$username_list .= '<option>' . $lang['No_match']. '</option>';
}
+ $db->sql_freeresult($result);
}
|
|
From: Paul S. O. <ps...@us...> - 2002-04-03 00:29:41
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv6320/includes
Modified Files:
prune.php
Log Message:
No comment
Index: prune.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/prune.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** prune.php 2 Apr 2002 14:53:40 -0000 1.17
--- prune.php 2 Apr 2002 15:10:41 -0000 1.18
***************
*** 123,128 ****
function auto_prune($forum_id = 0)
{
- require($phpbb_root_path . 'includes/functions_admin.'.$phpEx);
-
global $db, $lang;
--- 123,126 ----
|
|
From: Jonathan H. <the...@us...> - 2002-04-03 00:29:22
|
Update of /cvsroot/phpbb/phpBB2/admin In directory usw-pr-cvs1:/tmp/cvs-serv14283/admin Modified Files: admin_mass_email.php admin_styles.php admin_ug_auth.php Log Message: Ok this is just me being anal again... No code changes, just file headers.. Index: admin_mass_email.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/admin/admin_mass_email.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** admin_mass_email.php 22 Mar 2002 17:00:32 -0000 1.14 --- admin_mass_email.php 2 Apr 2002 21:13:47 -0000 1.15 *************** *** 1,5 **** <?php /*************************************************************************** ! * admin_email.php * ------------------- * begin : Thu May 31, 2001 --- 1,5 ---- <?php /*************************************************************************** ! * admin_mass_email.php * ------------------- * begin : Thu May 31, 2001 Index: admin_styles.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/admin/admin_styles.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** admin_styles.php 22 Mar 2002 17:00:32 -0000 1.26 --- admin_styles.php 2 Apr 2002 21:13:47 -0000 1.27 *************** *** 1,5 **** <?php /*************************************************************************** ! * admin_words.php * ------------------- * begin : Thursday, Jul 12, 2001 --- 1,5 ---- <?php /*************************************************************************** ! * admin_styles.php * ------------------- * begin : Thursday, Jul 12, 2001 Index: admin_ug_auth.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/admin/admin_ug_auth.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** admin_ug_auth.php 29 Mar 2002 01:03:11 -0000 1.12 --- admin_ug_auth.php 2 Apr 2002 21:13:47 -0000 1.13 *************** *** 1,5 **** <?php /*************************************************************************** ! * admin_userauth.php * ------------------- * begin : Saturday, Feb 13, 2001 --- 1,5 ---- <?php /*************************************************************************** ! * admin_ug_auth.php * ------------------- * begin : Saturday, Feb 13, 2001 |
|
From: Jonathan H. <the...@us...> - 2002-04-03 00:29:22
|
Update of /cvsroot/phpbb/phpBB2/db In directory usw-pr-cvs1:/tmp/cvs-serv14283/db Modified Files: mysql4.php Log Message: Ok this is just me being anal again... No code changes, just file headers.. Index: mysql4.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/db/mysql4.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** mysql4.php 5 Mar 2002 02:19:38 -0000 1.4 --- mysql4.php 2 Apr 2002 21:13:47 -0000 1.5 *************** *** 1,5 **** <?php /*************************************************************************** ! * mysql.php * ------------------- * begin : Saturday, Feb 13, 2001 --- 1,5 ---- <?php /*************************************************************************** ! * mysql4.php * ------------------- * begin : Saturday, Feb 13, 2001 *************** *** 338,340 **** } // if ... define ! ?> \ No newline at end of file --- 338,340 ---- } // if ... define ! ?> |
|
From: Paul S. O. <ps...@us...> - 2002-04-03 00:29:20
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv18508/includes
Modified Files:
auth.php
Log Message:
Small cleanups
Index: auth.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/auth.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -r1.36 -r1.37
*** auth.php 18 Mar 2002 23:53:12 -0000 1.36
--- auth.php 2 Apr 2002 14:03:58 -0000 1.37
***************
*** 23,31 ****
/*
$type's accepted (pre-pend with AUTH_):
! VIEW, READ, POST, REPLY, EDIT, DELETE, STICKY, ANNOUNCE, VOTE, VOTECREATE,
! ATTACH
!
! $types pending (for future versions, pre-pend with AUTH_):
! ALLOW_HTML, ALLOW_BBCODE, ALLOW_SMILIES
Possible options ($type/forum_id combinations):
--- 23,27 ----
/*
$type's accepted (pre-pend with AUTH_):
! VIEW, READ, POST, REPLY, EDIT, DELETE, STICKY, ANNOUNCE, VOTE, POLLCREATE
Possible options ($type/forum_id combinations):
***************
*** 53,57 ****
lookup
*/
! function auth($type, $forum_id, $userdata, $f_access = -1)
{
global $db, $lang;
--- 49,53 ----
lookup
*/
! function auth($type, $forum_id, $userdata, $f_access = '')
{
global $db, $lang;
***************
*** 60,120 ****
{
case AUTH_ALL:
! $a_sql = "a.auth_view, a.auth_read, a.auth_post, a.auth_reply, a.auth_edit, a.auth_delete, a.auth_sticky, a.auth_announce, a.auth_vote, a.auth_pollcreate";
! $auth_fields = array("auth_view", "auth_read", "auth_post", "auth_reply", "auth_edit", "auth_delete", "auth_sticky", "auth_announce", "auth_vote", "auth_pollcreate");
break;
case AUTH_VIEW:
! $a_sql = "a.auth_view";
! $auth_fields = array("auth_view");
break;
case AUTH_READ:
! $a_sql = "a.auth_read";
! $auth_fields = array("auth_read");
break;
case AUTH_POST:
! $a_sql = "a.auth_post";
! $auth_fields = array("auth_post");
break;
case AUTH_REPLY:
! $a_sql = "a.auth_reply";
! $auth_fields = array("auth_reply");
break;
case AUTH_EDIT:
! $a_sql = "a.auth_edit";
! $auth_fields = array("auth_edit");
break;
case AUTH_DELETE:
! $a_sql = "a.auth_delete";
! $auth_fields = array("auth_delete");
break;
case AUTH_ANNOUNCE:
! $a_sql = "a.auth_announce";
! $auth_fields = array("auth_announce");
break;
case AUTH_STICKY:
! $a_sql = "a.auth_sticky";
! $auth_fields = array("auth_sticky");
break;
case AUTH_POLLCREATE:
! $a_sql = "a.auth_pollcreate";
! $auth_fields = array("auth_pollcreate");
break;
case AUTH_VOTE:
! $a_sql = "a.auth_vote";
! $auth_fields = array("auth_vote");
break;
case AUTH_ATTACH:
break;
- case AUTH_ALLOW_HTML:
- break;
- case AUTH_ALLOW_BBCODE:
- break;
- case AUTH_ALLOW_SMILIES:
- break;
-
default:
break;
--- 56,109 ----
{
case AUTH_ALL:
! $a_sql = 'a.auth_view, a.auth_read, a.auth_post, a.auth_reply, a.auth_edit, a.auth_delete, a.auth_sticky, a.auth_announce, a.auth_vote, a.auth_pollcreate';
! $auth_fields = array('auth_view', 'auth_read', 'auth_post', 'auth_reply', 'auth_edit', 'auth_delete', 'auth_sticky', 'auth_announce', 'auth_vote', 'auth_pollcreate');
break;
case AUTH_VIEW:
! $a_sql = 'a.auth_view';
! $auth_fields = array('auth_view');
break;
case AUTH_READ:
! $a_sql = 'a.auth_read';
! $auth_fields = array('auth_read');
break;
case AUTH_POST:
! $a_sql = 'a.auth_post';
! $auth_fields = array('auth_post');
break;
case AUTH_REPLY:
! $a_sql = 'a.auth_reply';
! $auth_fields = array('auth_reply');
break;
case AUTH_EDIT:
! $a_sql = 'a.auth_edit';
! $auth_fields = array('auth_edit');
break;
case AUTH_DELETE:
! $a_sql = 'a.auth_delete';
! $auth_fields = array('auth_delete');
break;
case AUTH_ANNOUNCE:
! $a_sql = 'a.auth_announce';
! $auth_fields = array('auth_announce');
break;
case AUTH_STICKY:
! $a_sql = 'a.auth_sticky';
! $auth_fields = array('auth_sticky');
break;
case AUTH_POLLCREATE:
! $a_sql = 'a.auth_pollcreate';
! $auth_fields = array('auth_pollcreate');
break;
case AUTH_VOTE:
! $a_sql = 'a.auth_vote';
! $auth_fields = array('auth_vote');
break;
case AUTH_ATTACH:
break;
default:
break;
***************
*** 125,152 ****
// then we need to pull the auth information on the given forum (or all forums)
//
! if( $f_access == -1 )
{
! $forum_match_sql = ($forum_id != AUTH_LIST_ALL) ? "WHERE a.forum_id = $forum_id" : "";
$sql = "SELECT a.forum_id, $a_sql
FROM " . FORUMS_TABLE . " a
$forum_match_sql";
! $af_result = $db->sql_query($sql);
!
! if(!$af_result)
{
! message_die(GENERAL_ERROR, "Failed obtaining forum access control lists", "", __LINE__, __FILE__, $sql);
}
! else
{
! if( !$db->sql_numrows($af_result) )
! {
! message_die(GENERAL_ERROR, "No forum access control lists exist!", "", __LINE__, __FILE__, $sql);
! }
! else
! {
! $f_access = ($forum_id != AUTH_LIST_ALL) ? $db->sql_fetchrow($af_result) : $db->sql_fetchrowset($af_result);
! }
}
}
--- 114,137 ----
// then we need to pull the auth information on the given forum (or all forums)
//
! if ( empty($f_access) )
{
! $forum_match_sql = ( $forum_id != AUTH_LIST_ALL ) ? "WHERE a.forum_id = $forum_id" : '';
$sql = "SELECT a.forum_id, $a_sql
FROM " . FORUMS_TABLE . " a
$forum_match_sql";
! if ( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, 'Failed obtaining forum access control lists', '', __LINE__, __FILE__, $sql);
}
!
! $sql_fetchrow = ( $forum_id != AUTH_LIST_ALL ) ? 'sql_fetchrow' : 'sql_fetchrowset';
!
! if ( !($f_access = $db->$sql_fetchrow($result)) )
{
! message_die(GENERAL_ERROR, 'No forum access control lists exist', '', __LINE__, __FILE__, $sql);
}
+
+ $db->sql_freeresult($result);
}
***************
*** 156,164 ****
// are denied access
//
! $auth_user = array();
!
! if( $userdata['session_logged_in'] )
{
! $forum_match_sql = ($forum_id != AUTH_LIST_ALL) ? "AND a.forum_id = $forum_id" : "";
$sql = "SELECT a.forum_id, $a_sql, a.auth_mod
--- 141,148 ----
// are denied access
//
! $u_access = array();
! if ( $userdata['session_logged_in'] )
{
! $forum_match_sql = ( $forum_id != AUTH_LIST_ALL ) ? "AND a.forum_id = $forum_id" : '';
$sql = "SELECT a.forum_id, $a_sql, a.auth_mod
***************
*** 168,190 ****
AND a.group_id = ug.group_id
$forum_match_sql";
! $a_result = $db->sql_query($sql);
! if( !$a_result )
{
! message_die(GENERAL_ERROR, "Failed obtaining forum access control lists", "", __LINE__, __FILE__, $sql);
}
! $num_u_access = $db->sql_numrows($a_result);
! if( $num_u_access )
{
! if($forum_id != AUTH_LIST_ALL)
{
! $u_access = $db->sql_fetchrowset($a_result);
}
else
{
! while( $u_row = $db->sql_fetchrow($a_result) )
{
! $u_access[$u_row['forum_id']][] = $u_row;
}
}
}
--- 152,173 ----
AND a.group_id = ug.group_id
$forum_match_sql";
! if ( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, 'Failed obtaining forum access control lists', '', __LINE__, __FILE__, $sql);
}
! if ( $row = $db->sql_fetchrow($result) )
{
! if ( $forum_id != AUTH_LIST_ALL)
{
! $u_access[] = $row;
}
else
{
! do
{
! $u_access[$row['forum_id']][] = $row;
}
+ while( $row = $db->sql_fetchrow($result) );
}
}
***************
*** 194,198 ****
$auth_user = array();
-
for($i = 0; $i < count($auth_fields); $i++)
{
--- 177,180 ----
***************
*** 210,225 ****
// auth requirement of MOD
//
! // The access level assigned to a single user automatically takes precedence over any levels
! // granted by that user being a member of a multi-user usergroup, eg. a user who is banned
! // from a forum won't gain access to it even if they belong to a group which has access (and
! // vice versa). This check is done via the single_user check
! //
! // PS : I appologise for the fantastically clear and hugely readable code here ;) Simple gist
! // is, if this row of auth_access doesn't represent a single user then OR the contents of
! // relevant auth_access levels against the current level (allows maximum group privileges to
! // be assigned). If the row does represent a single user then forget any previous group results
! // and instead set the auth to whatever the OR'd contents of the access levels are.
! //
! if( $forum_id != AUTH_LIST_ALL )
{
$value = $f_access[$key];
--- 192,196 ----
// auth requirement of MOD
//
! if ( $forum_id != AUTH_LIST_ALL )
{
$value = $f_access[$key];
***************
*** 302,306 ****
// Is user a moderator?
//
! if( $forum_id != AUTH_LIST_ALL )
{
$auth_user['auth_mod'] = ( $userdata['session_logged_in'] ) ? auth_check_user(AUTH_MOD, 'auth_mod', $u_access, $is_admin) : 0;
--- 273,277 ----
// Is user a moderator?
//
! if ( $forum_id != AUTH_LIST_ALL )
{
$auth_user['auth_mod'] = ( $userdata['session_logged_in'] ) ? auth_check_user(AUTH_MOD, 'auth_mod', $u_access, $is_admin) : 0;
***************
*** 323,327 ****
$auth_user = 0;
! if( count($u_access) )
{
for($j = 0; $j < count($u_access); $j++)
--- 294,298 ----
$auth_user = 0;
! if ( count($u_access) )
{
for($j = 0; $j < count($u_access); $j++)
|
|
From: Paul S. O. <ps...@us...> - 2002-04-03 00:29:10
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv605/admin
Modified Files:
admin_forum_prune.php
Log Message:
more changes
Index: admin_forum_prune.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_forum_prune.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** admin_forum_prune.php 2 Apr 2002 14:04:18 -0000 1.21
--- admin_forum_prune.php 2 Apr 2002 14:53:44 -0000 1.22
***************
*** 71,75 ****
if( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, "Couldn't obtain list of forums for pruning", "", __LINE__, __FILE__, $sql);
}
--- 71,75 ----
if( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, 'Could not obtain list of forums for pruning', '', __LINE__, __FILE__, $sql);
}
***************
*** 97,119 ****
{
$p_result = prune($forum_rows[$i]['forum_id'], $prunedate);
$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
! $template->assign_block_vars("prune_results", array(
! "ROW_COLOR" => "#" . $row_color,
! "ROW_CLASS" => $row_class,
! "FORUM_NAME" => $forum_rows[$i]['forum_name'],
! "FORUM_TOPICS" => $p_result['topics'],
! "FORUM_POSTS" => $p_result['posts'])
);
}
$template->assign_vars(array(
! "L_FORUM_PRUNE" => $lang['Forum_Prune'],
! "L_FORUM" => $lang['Forum'],
! "L_TOPICS_PRUNED" => $lang['Topics_pruned'],
! "L_POSTS_PRUNED" => $lang['Posts_pruned'],
! "L_PRUNE_RESULT" => $lang['Prune_success'])
);
}
--- 97,120 ----
{
$p_result = prune($forum_rows[$i]['forum_id'], $prunedate);
+ sync('forum', $forum_rows[$i]['forum_id']);
$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
! $template->assign_block_vars('prune_results', array(
! 'ROW_COLOR' => '#' . $row_color,
! 'ROW_CLASS' => $row_class,
! 'FORUM_NAME' => $forum_rows[$i]['forum_name'],
! 'FORUM_TOPICS' => $p_result['topics'],
! 'FORUM_POSTS' => $p_result['posts'])
);
}
$template->assign_vars(array(
! 'L_FORUM_PRUNE' => $lang['Forum_Prune'],
! 'L_FORUM' => $lang['Forum'],
! 'L_TOPICS_PRUNED' => $lang['Topics_pruned'],
! 'L_POSTS_PRUNED' => $lang['Posts_pruned'],
! 'L_PRUNE_RESULT' => $lang['Prune_success'])
);
}
***************
*** 130,134 ****
//
$template->set_filenames(array(
! "body" => "admin/forum_prune_select_body.tpl")
);
--- 131,135 ----
//
$template->set_filenames(array(
! 'body' => 'admin/forum_prune_select_body.tpl')
);
***************
*** 146,155 ****
//
$template->assign_vars(array(
! "L_FORUM_PRUNE" => $lang['Forum_Prune'],
! "L_SELECT_FORUM" => $lang['Select_a_Forum'],
! "L_LOOK_UP" => $lang['Look_up_Forum'],
! "S_FORUMPRUNE_ACTION" => append_sid("admin_forum_prune.$phpEx"),
! "S_FORUMS_SELECT" => $select_list)
);
}
--- 147,156 ----
//
$template->assign_vars(array(
! 'L_FORUM_PRUNE' => $lang['Forum_Prune'],
! 'L_SELECT_FORUM' => $lang['Select_a_Forum'],
! 'L_LOOK_UP' => $lang['Look_up_Forum'],
! 'S_FORUMPRUNE_ACTION' => append_sid("admin_forum_prune.$phpEx"),
! 'S_FORUMS_SELECT' => $select_list)
);
}
***************
*** 162,166 ****
//
$template->set_filenames(array(
! "body" => "admin/forum_prune_body.tpl")
);
--- 163,167 ----
//
$template->set_filenames(array(
! 'body' => 'admin/forum_prune_body.tpl')
);
***************
*** 176,188 ****
//
$template->assign_vars(array(
! "FORUM_NAME" => $forum_name,
! "L_FORUM_PRUNE" => $lang['Forum_Prune'],
! "L_FORUM_PRUNE_EXPLAIN" => $lang['Forum_Prune_explain'],
! "L_DO_PRUNE" => $lang['Do_Prune'],
!
! "S_FORUMPRUNE_ACTION" => append_sid("admin_forum_prune.$phpEx"),
! "S_PRUNE_DATA" => $prune_data,
! "S_HIDDEN_VARS" => $hidden_input)
);
}
--- 177,189 ----
//
$template->assign_vars(array(
! 'FORUM_NAME' => $forum_name,
! 'L_FORUM_PRUNE' => $lang['Forum_Prune'],
! 'L_FORUM_PRUNE_EXPLAIN' => $lang['Forum_Prune_explain'],
! 'L_DO_PRUNE' => $lang['Do_Prune'],
!
! 'S_FORUMPRUNE_ACTION' => append_sid("admin_forum_prune.$phpEx"),
! 'S_PRUNE_DATA' => $prune_data,
! 'S_HIDDEN_VARS' => $hidden_input)
);
}
***************
*** 191,195 ****
// Actually output the page here.
//
! $template->pparse("body");
include('page_footer_admin.'.$phpEx);
--- 192,196 ----
// Actually output the page here.
//
! $template->pparse('body');
include('page_footer_admin.'.$phpEx);
|
|
From: Jonathan H. <the...@us...> - 2002-04-01 21:05:16
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv9209
Modified Files:
usercp_register.php usercp_sendpasswd.php
Log Message:
Shorten the activation, key to allow for less than 77 characters..,yet still keep it as long as possible.
Index: usercp_register.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_register.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** usercp_register.php 31 Mar 2002 00:06:34 -0000 1.18
--- usercp_register.php 1 Apr 2002 19:19:47 -0000 1.19
***************
*** 396,399 ****
--- 396,402 ----
$user_active = 0;
$user_actkey = gen_rand_string(true);
+ $key_len = 54 - (strlen($server_url));
+ $key_len = ($key_len > 6) ? $key_len : 6;
+ $user_actkey = substr($user_actkey, 0, $key_len);
if ( $userdata['session_logged_in'] )
***************
*** 490,493 ****
--- 493,499 ----
{
$user_actkey = gen_rand_string(true);
+ $key_len = 54 - (strlen($server_url));
+ $key_len = ( $key_len > 6 ) ? $key_len : 6;
+ $user_actkey = substr($user_actkey, 0, $key_len);
$sql .= "0, '" . str_replace("\'", "''", $user_actkey) . "')";
}
***************
*** 923,925 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 929,931 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
Index: usercp_sendpasswd.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_sendpasswd.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** usercp_sendpasswd.php 31 Mar 2002 00:06:34 -0000 1.5
--- usercp_sendpasswd.php 1 Apr 2002 19:19:49 -0000 1.6
***************
*** 49,52 ****
--- 49,55 ----
$user_actkey = gen_rand_string(true);
+ $key_len = 54 - strlen($server_url);
+ $key_len = ( $str_len > 6 ) ? $key_len : 6;
+ $user_actkey = substr($user_actkey, 0, $key_len);
$user_password = gen_rand_string(false);
***************
*** 129,131 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 132,134 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
|
|
From: Jonathan H. <the...@us...> - 2002-04-01 20:59:16
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv21206 Modified Files: posting.php Log Message: Ok so we shouldn't allow subject lines to be all whitespace either :) Index: posting.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/posting.php,v retrieving revision 1.158 retrieving revision 1.159 diff -C2 -r1.158 -r1.159 *** posting.php 31 Mar 2002 00:06:33 -0000 1.158 --- posting.php 1 Apr 2002 20:07:51 -0000 1.159 *************** *** 520,524 **** case 'reply': $username = ( !empty($HTTP_POST_VARS['username']) ) ? $HTTP_POST_VARS['username'] : ''; ! $subject = ( !empty($HTTP_POST_VARS['subject']) ) ? $HTTP_POST_VARS['subject'] : ''; $message = ( !empty($HTTP_POST_VARS['message']) ) ? $HTTP_POST_VARS['message'] : ''; $poll_title = ( isset($HTTP_POST_VARS['poll_title']) && $is_auth['auth_pollcreate'] ) ? $HTTP_POST_VARS['poll_title'] : ''; --- 520,524 ---- case 'reply': $username = ( !empty($HTTP_POST_VARS['username']) ) ? $HTTP_POST_VARS['username'] : ''; ! $subject = ( !empty($HTTP_POST_VARS['subject']) ) ? trim($HTTP_POST_VARS['subject']) : ''; $message = ( !empty($HTTP_POST_VARS['message']) ) ? $HTTP_POST_VARS['message'] : ''; $poll_title = ( isset($HTTP_POST_VARS['poll_title']) && $is_auth['auth_pollcreate'] ) ? $HTTP_POST_VARS['poll_title'] : ''; *************** *** 1083,1085 **** include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ! ?> \ No newline at end of file --- 1083,1085 ---- include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ! ?> |
|
From: Paul S. O. <ps...@us...> - 2002-04-01 13:28:41
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv13719/includes
Modified Files:
page_header.php
Log Message:
Latest header attempt
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.105
retrieving revision 1.106
diff -C2 -r1.105 -r1.106
*** page_header.php 31 Mar 2002 00:06:34 -0000 1.105
--- page_header.php 1 Apr 2002 13:23:42 -0000 1.106
***************
*** 265,269 ****
SET user_last_privmsg = " . $userdata['user_lastvisit'] . "
WHERE user_id = " . $userdata['user_id'];
! if ( !($status = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not update private message new/read time for user', '', __LINE__, __FILE__, $sql);
--- 265,269 ----
SET user_last_privmsg = " . $userdata['user_lastvisit'] . "
WHERE user_id = " . $userdata['user_id'];
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update private message new/read time for user', '', __LINE__, __FILE__, $sql);
***************
*** 449,457 ****
}
! if ( getenv('REQUEST_METHOD') != 'POST' )
! {
! header ('Cache-Control: private, no-cache, must-revalidate, pre-check=2, post-check=2, max-age=25');
! header ('Pragma: no-cache');
! }
header ('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
header ('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
--- 449,453 ----
}
! header ('Cache-Control: private, pre-check=0, post-check=0, max-age=0');
header ('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
header ('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
|
|
From: Paul S. O. <ps...@us...> - 2002-04-01 12:46:59
|
Update of /cvsroot/phpbb/phpBB2/language/lang_spanish In directory usw-pr-cvs1:/tmp/cvs-serv31587/language/lang_spanish Modified Files: lang_main.php Log Message: Updates to RC-3 standard Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_spanish/lang_main.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** lang_main.php 18 Mar 2002 15:46:09 -0000 1.4 --- lang_main.php 1 Apr 2002 12:46:56 -0000 1.5 *************** *** 937,981 **** $lang['tz']['12'] = "(GMT +12:00 horas) Auckland, Wellington, Fiji, Marshall Island"; ! $lang['days_long'][0] = "Domingo"; ! $lang['days_long'][1] = "Lunes"; ! $lang['days_long'][2] = "Martes"; ! $lang['days_long'][3] = "Miércoles"; ! $lang['days_long'][4] = "Jueves"; ! $lang['days_long'][5] = "Viernes"; ! $lang['days_long'][6] = "Sábado"; ! ! $lang['days_short'][0] = "Dom"; ! $lang['days_short'][1] = "Lun"; ! $lang['days_short'][2] = "Mar"; ! $lang['days_short'][3] = "Mie"; ! $lang['days_short'][4] = "Jue"; ! $lang['days_short'][5] = "Vie"; ! $lang['days_short'][6] = "Sab"; ! ! $lang['months_long'][0] = "Enero"; ! $lang['months_long'][1] = "Febrero"; ! $lang['months_long'][2] = "Marzo"; ! $lang['months_long'][3] = "Abril"; ! $lang['months_long'][4] = "Mayo"; ! $lang['months_long'][5] = "Junio"; ! $lang['months_long'][6] = "Julio"; ! $lang['months_long'][7] = "Agosto"; ! $lang['months_long'][8] = "Setiembre"; ! $lang['months_long'][9] = "Octubre"; ! $lang['months_long'][10] = "Noviembre"; ! $lang['months_long'][11] = "Diciembre"; ! ! $lang['months_short'][0] = "Ene"; ! $lang['months_short'][1] = "Feb"; ! $lang['months_short'][2] = "Mar"; ! $lang['months_short'][3] = "Abr"; ! $lang['months_short'][4] = "May"; ! $lang['months_short'][5] = "Jun"; ! $lang['months_short'][6] = "Jul"; ! $lang['months_short'][7] = "Ago"; ! $lang['months_short'][8] = "Set"; ! $lang['months_short'][9] = "Oct"; ! $lang['months_short'][10] = "Nov"; ! $lang['months_short'][11] = "Dic"; // --- 937,978 ---- $lang['tz']['12'] = "(GMT +12:00 horas) Auckland, Wellington, Fiji, Marshall Island"; ! $lang['datetime']['Sunday'] = "Domingo"; ! $lang['datetime']['Monday'] = "Lunes"; ! $lang['datetime']['Tuesday'] = "Martes"; ! $lang['datetime']['Wednesday'] = "Miércoles"; ! $lang['datetime']['Thursday'] = "Jueves"; ! $lang['datetime']['Friday'] = "Viernes"; ! $lang['datetime']['Saturday'] = "Sábado"; ! $lang['datetime']['Sun'] = "Dom"; ! $lang['datetime']['Mon'] = "Lun"; ! $lang['datetime']['Tue'] = "Mar"; ! $lang['datetime']['Wed'] = "Mie"; ! $lang['datetime']['Thu'] = "Jue"; ! $lang['datetime']['Fri'] = "Vie"; ! $lang['datetime']['Sat'] = "Sab"; ! $lang['datetime']['January'] = "Enero"; ! $lang['datetime']['February'] = "Febrero"; ! $lang['datetime']['March'] = "Marzo"; ! $lang['datetime']['April'] = "Abril"; ! $lang['datetime']['May'] = "Mayo"; ! $lang['datetime']['June'] = "Junio"; ! $lang['datetime']['July'] = "Julio"; ! $lang['datetime']['August'] = "Augosto"; ! $lang['datetime']['September'] = "Septiembre"; ! $lang['datetime']['October'] = "Octubre"; ! $lang['datetime']['November'] = "Noviembre"; ! $lang['datetime']['December'] = "Diciembre"; ! $lang['datetime']['Jan'] = "Ene"; ! $lang['datetime']['Feb'] = "Feb"; ! $lang['datetime']['Mar'] = "Mar"; ! $lang['datetime']['Apr'] = "Abr"; ! $lang['datetime']['May'] = "May"; ! $lang['datetime']['Jun'] = "Jun"; ! $lang['datetime']['Jul'] = "Jul"; ! $lang['datetime']['Aug'] = "Ago"; ! $lang['datetime']['Sep'] = "Sep"; ! $lang['datetime']['Oct'] = "Oct"; ! $lang['datetime']['Nov'] = "Nov"; ! $lang['datetime']['Dec'] = "Dic"; // |
Update of /cvsroot/phpbb/phpBB2/language/lang_albanian/email
In directory usw-pr-cvs1:/tmp/cvs-serv30980
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 versions by alket
--- NEW FILE ---
Subject: Llogari e re
Përshëndetje,
Llogaria e "{USERNAME}" është c'aktivizuar ose sapo krijuar; kontrolloni detajet mbi këtë përdorues dhe aktivizoni llogarinë duke klikuar lidhjen e mëposhtme:
{U_ACTIVATE}
{EMAIL_SIG}
--- NEW FILE ---
Mesazhi i mëposhtëm është dërguar nga një administrator i "{SITENAME}". Nqs ky mesazh është i padëshirueshëm, abuzues apo përmban material të pahijshëm ju lutem kontaktoni webmasterin tek adresa:
{BOARD_EMAIL}
Ju lutem përfshini këtë mesazh (sidomos detajet e serverit).
Mesazhi i dërguar vazhdon:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{MESSAGE}
--- NEW FILE ---
Subject: Llogaria u aktivizia
Përshëndetje {USERNAME},
Llogaria juaj tek "{SITENAME}" u aktivizua, ju mund të identifikoheni tashti duke përdorur emrin dhe fjalëkalimin që morët në mesazhin e mëparshëm.
{EMAIL_SIG}
--- NEW FILE ---
Subject: Mirsevini tek forumi i {SITENAME}
{WELCOME_MSG}
Ju lutem ruajeni këtë mesazh për referencë. Informacioni mbi llogarinë tuaj është si më poshtë:
----------------------------
Identifikimi: {USERNAME}
Fjalëkalimi: {PASSWORD}
----------------------------
Llogaria juaj është e ç'aktivizuar tashti për tashti, administratori duhet ta aprovojë përpara se të keni mundësi të identifikoheni. Kur llogaria juaj të aprovohet do merrni një mesazh të ri.
Ju lutem mos harroni fjalëkalimin sepse ai ruhet i shifruar në regjistrin tonë dhe ne nuk mund ta deshifrojmë. Megjithatë nqs harroni fjalëkalimin ju mund të kërkoni një të ri i cili duhet aktivizuar në të njëjtën mënyrë.
Ju falënderojmë për regjistrimin.
{EMAIL_SIG}
--- NEW FILE ---
Subject: Mirsevini tek forumi i {SITENAME}
{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 I 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 ---
Subject: Jeni anëtar i këtij grupi tashmë
Urime,
Ju jeni pranuar tek grupi "{GROUP_NAME}" në {SITENAME}.
Ky veprim u bë nga moderatori i grupit ose administratori i forumit, kontaktoni ata për më shumë informacion.
Ju mund të shikoni anëtarësitë tuaja këtu:
{U_GROUPCP}
{EMAIL_SIG}
--- NEW FILE ---
Subject: Kërkesa juaj u aprovua
Urime,
Kërkesa juaj për anëtarësim tek grupi "{GROUP_NAME}" tek {SITENAME} u aprovua.
Ju mund të shikoni anëtarësitë tuaja këtu:
{U_GROUPCP}
{EMAIL_SIG}
--- NEW FILE ---
Subject: Dikush ka bërë kërkesë për anëtarësim tek grupi juaj
I nderuar {GROUP_MODERATOR},
Një anëtar ka kërkuar të anëtarësohet tek një nga grupet që moderoni tek {SITENAME}.
Për ta aprovuar ose mosaprovuar këtë kërkesë kliko:
{U_GROUPCP}
{EMAIL_SIG}
--- NEW FILE ---
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>
--- NEW FILE ---
Subject: Sapo keni marrë mesazh privat të ri
Përshëndetje {USERNAME},
Ju sapo keni marrë një mesazh të ri privat në llogarinë tuaj tek "{SITENAME}" dhe keni kërkuar tu informojmë sa herë që kjo ndodh. Klikoni këtu për ta parë mesazhin e ri:
{U_INBOX}
Kini parasysh që gjithmonë mund të zgjidhni që të mos njoftoheni për mesazhe të reja duke ndryshuar vetitë e duhura tek profili juaj.
{EMAIL_SIG}
--- NEW FILE ---
Përshëndetje {TO_USERNAME},
Mesazhi i mëposhtëm u dërgua për ju nga {FROM_USERNAME} nëpërmjet llogarisë tuaj tek {SITENAME}. Nqs ky mesazh është i padëshirueshëm, abuzues apo përmban material të pahijshëm ju lutem kontaktoni webmasterin tek adresa:
{BOARD_EMAIL}
Ju lutem përfshini këtë mesazh (sidomos detajet e serverit). Ju lutem njoftoni që adresa nga u dërgua ky mesazh është ajo e {FROM_USERNAME}.
Mesazhi i dërguar vazhdon:
~~~~~~~~~~~~~~~~~~~~~~~~~~~
{MESSAGE}
--- NEW FILE ---
Subject: Përgjigje tek tema - {TOPIC_TITLE}
Përshëndetje {USERNAME},
Ju po merrni këtë mesazh sepse jeni duke vëzhguar temën "{TOPIC_TITLE}" tek {SITENAME}. Kjo temë ka pasur të paktën një përgjigje që nga vizita juaj e fundit. Ju mund të përdorni lidhjen e mëposhtme për të parë këto përgjigje; nuk do ju dërgohen lajmërime të tjera deri sa ta vizitoni temën.
{U_TOPIC}
Nqs nuk dëshironi më ta vëzhgoni këtë temë ose klikoni lidhjen "Ndalo së vëzhguari këtë temë", ose klikoni lidhjen e mëposhtme:
{U_STOP_WATCHING_TOPIC}
{EMAIL_SIG}
--- NEW FILE ---
Subject: Riaktivizoni llogarinë tuaj
Përshëndetje {USERNAME},
Llogaria juaj tek "{SITENAME}" është c'aktivizuar, ka shumë mundësi për shkak të ndryshimeve në profilin tuaj. Klikoni në lidhjen e mëposhtme për ta riaktivizuar:
{U_ACTIVATE}
{EMAIL_SIG}
--- NEW FILE ---
Subject: Aktivizoni fjalëkalimin e ri
Përshëndetje {USERNAME}
Po e merrni këtë mesazh sepse ju (ose dikush që pretendon të jetë ju) ka kërkuar një fjalëkalim i ri për llogarinë tuaj tek {SITENAME}. Nqs nuk ishit ju ai që kërkuat një fjalëkalim të ri injorojeni këtë mesazh. Nqs ky mesazh ju vjen në mënyrë të përsëritur kontaktoni administratorin e forumit.
Për të përdorur fjalëkalimi e ri ju duhet ta aktivizoni duke klikuar më poshtë:
{U_ACTIVATE}
Nqs kjo procedurë është e sukseshme atëherë mund të identifikoheni duke përdorur fjalëkalimin e mëposhtëm:
Fjalëkalimi: {PASSWORD}
Ju mund ta ndryshoni këtë fjalëkalim nëpërmjet profilit tuaj. Nqs hasni ndonjë problem kontaktoni administratorin e forumit.
{EMAIL_SIG}
--- NEW FILE ---
Subject: Mirsevini tek forumi i {SITENAME}
{WELCOME_MSG}
Ju lutem ruajeni këtë mesazh për referencë. Informacioni mbi llogarinë tuaj është si më poshtë:
----------------------------
Identifikimi: {USERNAME}
Fjalëkalimi: {PASSWORD}
----------------------------
Ju lutem mos harroni fjalëkalimin sepse ai ruhet i shifruar në regjistrin tonë dhe ne nuk mund ta deshifrojmë. Megjithatë nqs harroni fjalëkalimin ju mund të kërkoni një të ri i cili duhet aktivizuar në të njëjtën mënyrë.
Ju falënderojmë për regjistrimin.
{EMAIL_SIG}
--- NEW FILE ---
Subject: Mirsevini tek forumi i {SITENAME}
{WELCOME_MSG}
Ju lutem ruajeni këtë mesazh për referencë. Informacioni mbi llogarinë tuaj është si më poshtë:
----------------------------
Identifikimi: {USERNAME}
Fjalëkalimi: {PASSWORD}
----------------------------
Llogaria juaj është e ç'aktivizuar tashti për tashti. Ju nuk mund ta përdorni derisa të vizitoni lidhjen e mëposhtme:
{U_ACTIVATE}
Ju lutem mos harroni fjalëkalimin sepse ai ruhet i shifruar në regjistrin tonë dhe ne nuk mund ta deshifrojmë. Megjithatë nqs harroni fjalëkalimin ju mund të kërkoni një të ri i cili duhet aktivizuar në të njëjtën mënyrë.
Ju falënderojmë për regjistrimin.
{EMAIL_SIG}
|
|
From: Paul S. O. <ps...@us...> - 2002-04-01 12:45:05
|
Update of /cvsroot/phpbb/phpBB2/language/lang_albanian In directory usw-pr-cvs1:/tmp/cvs-serv30658 Added Files: lang_admin.php lang_bbcode.php lang_faq.php lang_main.php Log Message: Initial versions by alket --- NEW FILE --- <?php /*************************************************************************** * lang_admin.php [English] * ------------------- * begin : Sat Dec 16 2000 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_admin.php,v 1.1 2002/04/01 12:45:01 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. * ***************************************************************************/ // // Format is same as lang_main // // // Modules, this replaces the keys used // in the modules[][] arrays in each module file // $lang['General'] = "Administrim i Përgjithshëm"; $lang['Users'] = "Administrim i Anëtarëve"; $lang['Groups'] = "Administrim i Grupeve"; $lang['Forums'] = "Administrim i Forumeve"; $lang['Styles'] = "Administrim i Paraqitjes"; $lang['Configuration'] = "Konfigurimi"; $lang['Permissions'] = "Autorizimet"; $lang['Manage'] = "Menaxhimi"; $lang['Disallow'] = "Mos lejo emrat"; $lang['Prune'] = "Shkurtimi"; $lang['Mass_Email'] = "Email Masiv"; $lang['Ranks'] = "Gradimi"; $lang['Smilies'] = "Figurinat"; $lang['Ban_Management'] = "Përjashtimet"; $lang['Word_Censor'] = "Fjalët e Censuruara"; $lang['Export'] = "Eksporto"; $lang['Create_new'] = "Krijo"; $lang['Add_new'] = "Shto"; $lang['Backup_DB'] = "Krijo një kopje të Regjistrit"; $lang['Restore_DB'] = "Rivendos Regjistrin"; // // Index // $lang['Admin'] = "Administrim"; $lang['Not_admin'] = "Ju nuk keni autorizim për të modifikuar këtë forum"; $lang['Welcome_phpBB'] = "Mirësevini tek phpBB"; $lang['Admin_intro'] = "Ju falënderojmë që zgjodhët phpBB për forumin tuaj. Kjo faqe jep një përmbledhje të statistikave kryesore për forumin tuaj. Kthehuni tek kjo faqe duke klikuar mbi butonin <u>Indeksi i Administrimit</u> në anën e majtë të faqes. Klikoni ikonën e phpBB për të shkuar tek indeksi kryesor i forumeve. Lidhjet e tjera në anën e majte të faqes mundësojnë kontrollin e plotë të forumit dhe përmbajnë udhëzime mbi përdorimin e cdo kontrolli."; $lang['Main_index'] = "Indeksi i Forumit"; $lang['Forum_stats'] = "Statistikat e Forumit"; $lang['Admin_Index'] = "Indeksi i Administrimit"; $lang['Preview_forum'] = "Shqyrto Forumin"; $lang['Click_return_admin_index'] = "Kliko %skëtu%s për të shkuar tek indeksi i administrimit"; $lang['Statistic'] = "Statistika"; $lang['Value'] = "Vlera"; $lang['Number_posts'] = "Numri i postimeve"; $lang['Posts_per_day'] = "Postime në ditë"; $lang['Number_topics'] = "Numri i temave"; $lang['Topics_per_day'] = "Tema në ditë"; $lang['Number_users'] = "Numri i anëtarëve"; $lang['Users_per_day'] = "Anëtarë në ditë"; $lang['Board_started'] = "Forumi filloi"; $lang['Avatar_dir_size'] = "Madhësia e direktorisë së fotos personale"; $lang['Database_size'] = "Madhësia e regjistrit"; $lang['Gzip_compression'] ="Kompresimi me Gzip"; $lang['Not_available'] = "Nuk ofrohet"; $lang['ON'] = "Aktiv"; // This is for GZip compression $lang['OFF'] = "Jo-aktiv"; // // DB Utils // $lang['Database_Utilities'] = "Vegla të dobishme për përpunimin e regjistrit"; $lang['Restore'] = "Rivendos"; $lang['Backup'] = "Krijo kopje"; $lang['Restore_explain'] = "Ky veprim do kryejë një rivendosje të plotë të të gjitha tabelave të phpBB nga një skedar. Nqs serveri juaj e lejon, ju mund të ngarkoni një skedar të kompresuar me gzip. <b>KUJDES</b> Ky veprim do rishkruajë të gjitha të dhënat e forumit. Procesi i rivendosjes mund të kërkojë shumë kohë, ju lutem mos ikni nga kjo faqe deri në përfundim të procesit!"; $lang['Backup_explain'] = "Këtu mund të krijoni një kopje të plotë të phpBB. Nqs keni tabela speciale në të njëjtin regjistër me phpBB dhe doni ti kopjoni në të njëjtin skedar, specifikoni emrat e tyre duke i ndarë me presje tek kutia e Tabelave Shtesë. Nqs serveri juaj e lejon, ju mund të kompresoni skedarin me gzip para se ta shkarkoni."; $lang['Backup_options'] = "Mundësitë për Kopjen"; $lang['Start_backup'] = "Fillo kopjimin"; $lang['Full_backup'] = "Kopjim i plotë"; $lang['Structure_backup'] = "Vetëm - Kopjim i strukturës"; $lang['Data_backup'] = "Vetëm - Kopjim i të dhënave"; $lang['Additional_tables'] = "Tabela Shtesë"; $lang['Gzip_compress'] = "Kompreso skedarin me gzip"; $lang['Select_file'] = "Zgjidh një skedar"; $lang['Start_Restore'] = "Fillo rivendosjen"; $lang['Restore_success'] = "Regjistri u rivendos në mënyrë të suksesshme.<br /><br />Forumi juaj duhet të kthehet në gjendjen që kishte kur u kopjua."; $lang['Backup_download'] = "Shkarkimi do filloje së shpejti, prisni deri sa të fillojë"; $lang['Backups_not_supported'] = "Na vjen keq, por kopjimi nuk mbështetet për këtë lloj regjistri"; $lang['Restore_Error_uploading'] = "Problem me ngarkimin e skedarit (kopja e regjistrit)"; $lang['Restore_Error_filename'] = "Problem me emrin e skedarit, provo një skedar tjetër"; $lang['Restore_Error_decompress'] = "Nuk dekompreson dot skedarin me gzip, ngarkoni një text-file"; $lang['Restore_Error_no_file'] = "Asnjë skedar nuk u ngarkua"; // // Auth pages // $lang['Select_a_User'] = "Zgjidh një anëtar"; $lang['Select_a_Group'] = "Zgjidh një grup"; $lang['Select_a_Forum'] = "Zgjidh një forum"; $lang['Auth_Control_User'] = "Kontrolli i autorizimeve personale"; $lang['Auth_Control_Group'] = "Kontrolli i autorizimeve të grupeve"; $lang['Auth_Control_Forum'] = "Kontrolli i autorizimeve për forumet"; $lang['Look_up_User'] = "Analizo anëtarin"; $lang['Look_up_Group'] = "Analizo grupin"; $lang['Look_up_Forum'] = "Analizo forumin"; $lang['Group_auth_explain'] = "Këtu mund të ndryshoni autorizimet dhe statusin e moderatorit që i janë caktuar cdo grupi anëtarësh. Kujdes, mos harroni që ndryshimi i autorizimeve për grupin mund të mos ndikojë autorizimet personale, etj. Ju do paralajmëroheni në këto raste."; $lang['User_auth_explain'] = "Këtu mund të ndryshoni autorizimet dhe statusin e moderatorit që i janë caktuar cdo përdoruesi. Kujdes, mos harroni që ndryshimi i autorizimeve për përdoruesin mund të mos ndikojë autorizimet për grupin, etj. Ju do paralajmëroheni në këto raste."; $lang['Forum_auth_explain'] = "Këtu mund të ndryshoni autorizimet për cdo forum. Ka dy mënyra për ta bërë këtë, mënyra e thjeshtë dhe mënyra e avancuar. Mënyra e avancuar ofron kontroll më të përpiktë për cdo veprim. Mos harroni që ndryshimi i nivelit të autorizimit në një forum do ndikojë përdorimin e tij nga përdoruesët e ndryshëm."; $lang['Simple_mode'] = "Mënyra e thjeshtë"; $lang['Advanced_mode'] = "Mënyra e avancuar"; $lang['Moderator_status'] = "Status moderatori"; $lang['Allowed_Access'] = "Lejohet hyrja"; $lang['Disallowed_Access'] = "Ndalohet hyrja"; $lang['Is_Moderator'] = "Eshtë moderator"; $lang['Not_Moderator'] = "Nuk është moderator"; $lang['Conflict_warning'] = "Paralajmërim: Konflikt në autorizim"; $lang['Conflict_access_userauth'] = "Ky përdorues ka akoma te drejta për hyrje në këtë forum nëpërmjet anëtarësisë në grup. You duhet të ndryshoni autorizimet e grupit, ose ta hiqni këtë përdorues nga ky grup në mënyrë që ta ndaloni. Grupet që i japin të drejta (dhe forumet që ndikohen) janë renditur më poshtë."; $lang['Conflict_mod_userauth'] = "Ky përdorues ka akoma të drejta Moderatori për këtë forum nëpërmjet anëtarësisë në grup. You duhet të ndryshoni autorizimet e grupit, ose ta hiqni këtë përdorues nga ky grup në mënyrë që ta ndaloni. Grupet që i japin të drejta (dhe forumet që ndikohen) janë renditur më poshtë."; $lang['Conflict_access_groupauth'] = "Ky përdorues/ë kanë akoma te drejta për hyrje në këtë forum nëpërmjet autorizimeve individuale. You duhet të ndryshoni autorizimet individuale që ta/i ndaloni. Përdoruesët me të drejta (dhe forumet që ndikohen) janë renditur më poshtë."; $lang['Conflict_mod_groupauth'] = "Ky përdorues ka akoma të drejta Moderatori për këtë forum nëpërmjet autorizimeve personale. You duhet të ndryshoni autorizimet individuale që ta ndaloni. Përdoruesët me të drejta (dhe forumet që ndikohen) janë renditur më poshtë."; $lang['Public'] = "Publik"; $lang['Private'] = "Privat"; $lang['Registered'] = "I regjistruar"; $lang['Administrators'] = "Administratorët"; $lang['Hidden'] = "I fshehur"; // These are displayed in the drop down boxes for advanced // mode forum auth, try and keep them short! $lang['Forum_ALL'] = "ALL"; $lang['Forum_REG'] = "REG"; $lang['Forum_PRIVATE'] = "PRIVATE"; $lang['Forum_MOD'] = "MOD"; $lang['Forum_ADMIN'] = "ADMIN"; $lang['View'] = "Shiko"; $lang['Read'] = "Lexo"; $lang['Post'] = "Shkruaj"; $lang['Reply'] = "Përgjigju"; $lang['Edit'] = "Modifiko"; $lang['Delete'] = "Fshi"; $lang['Sticky'] = "Ngjitës"; $lang['Announce'] = "Lajmëro"; $lang['Vote'] = "Voto"; $lang['Pollcreate'] = "Krijo votim"; $lang['Permissions'] = "Autorizimet"; $lang['Simple_Permission'] = "Autorizim i thjeshtësuar"; $lang['User_Level'] = "Nivel përdoruesi"; $lang['Auth_User'] = "Përdorues"; $lang['Auth_Admin'] = "Administrator"; $lang['Group_memberships'] = "Anëtarësia e grupit"; $lang['Usergroup_members'] = "Ky grup ka keta anëtarë"; $lang['Forum_auth_updated'] = "Autorizimet e forumit u ri-freskuan"; $lang['User_auth_updated'] = "Autorizimet e përdoruesit u ri-freskuan"; $lang['Group_auth_updated'] = "Autorizimet e grupit u ri-freskuan"; $lang['Auth_updated'] = "Autorizimet u ri-freskuan"; $lang['Click_return_userauth'] = "Kliko %sketu%s për ty kthyer tek Autorizimet e Përdoruesve"; $lang['Click_return_groupauth'] = "Kliko %sketu%s për ty kthyer tek Autorizimet e Grupeve"; $lang['Click_return_forumauth'] = "Kliko %sketu%s për ty kthyer tek Autorizimet e Forumeve"; // // Banning // $lang['Ban_control'] = "Menaxhimi i përjashtimeve"; $lang['Ban_explain'] = "Këtu bëhet përjashtimi i përdoruesve/anëtarëve. Kjo arrihet duke përjashtuar një anëtar specifik, një IP/hostname ose grup IP/hostname, ose të dyja bashkë. Këto metoda pengojnë një përdorues madje dhe të shikojnë faqen kryesore të forumit. Nqs doni të pengoni dikë të përjashtuar më parë dhe që tenton të regjistrohet me një emër të ri, mund ta ndaloni atë duke përjashtuar adresën e email. Kini parasysh, përjashtimi i email-it nuk pengon dikë që të shkruajë apo shikojë forumin. Për këtë përdorni një ose të dyja metodat e mësipërme."; $lang['Ban_explain_warn'] = "Kujdes, përjashtimi i një serie IP-sh përjashton cdo IP midis fillimit dhe fundit të serisë. Nqs ju duhet të përjashtoni një seri, mundohuni ta minimizoni serinë. "; $lang['Select_username'] = "Zgjidh identifikimin"; $lang['Select_ip'] = "Zgjidh IP"; $lang['Select_email'] = "Zgjidh adresën e e-mail"; $lang['Ban_username'] = "Përjashto një ose më shumë anëtarë"; $lang['Ban_username_explain'] = "Përjashtimi i një ose më shumë anëtarëve njëkohësisht është i mundur me kombinimin e duhur të butonave"; $lang['Ban_IP'] = "Përjashto një ose më shumë IP ose hostname"; $lang['IP_hostname'] = "IP ose hostnames"; $lang['Ban_IP_explain'] = "Per të specifikuar më shumë se një IP ose hostname, ndajini me presje. To specify a range of IP addresses separate the start and end with a hyphen (-), to specify a wildcard use *"; $lang['Ban_email'] = "Pëjashto një ose më shumë adresa e-mail"; $lang['Ban_email_explain'] = "Per të specifikuar më shumë se një adresë e-maili, ndajini me presje. Për të specifikuar një -wildcard username- përdor *, për shembull *@hotmail.com"; $lang['Unban_username'] = "Riprano një ose më shumë anëtarë"; $lang['Unban_username_explain'] = "Ripranimi i një ose më shumë anëtarëve njëkohësisht është i mundur me kombinimin e duhur të butonave"; $lang['Unban_IP'] = "Riprano një ose më shumë IP"; $lang['Unban_IP_explain'] = "Ripranimi i një ose më shumë IP njëkohësisht është i mundur me kombinimin e duhur të butonave"; $lang['Unban_email'] = "Riprano një ose më shumë adresa e-maili"; $lang['Unban_email_explain'] = "Ripranimi i një ose më shumë adresave njëkohësisht është i mundur me kombinimin e duhur të butonave"; $lang['No_banned_users'] = "Asnjë anëtar i përjashtuar"; $lang['No_banned_ip'] = "Asnjë IP e përjashtuar"; $lang['No_banned_email'] = "Asnjë adresë e-maili e përjashtuar"; $lang['Ban_update_sucessful'] = "Lista e përjashtimeve u refreskua në mënyrë të suksesshme"; $lang['Click_return_banadmin'] = "Kliko %skëtu%s për tu kthyer tek menaxhimi i përjashtimeve"; // // Configuration // $lang['General_Config'] = "Konfigurim i përgjithshëm"; $lang['Config_explain'] = "Formulari i mëposhtëm ju jep mundësine e konfigurimit të opsioneve të përgjithshme. Për administrimin dhe konfigurimin e anëtarëve dhe forumeve, përdorni tabelat në krahun e majtë."; $lang['Click_return_config'] = "Kliko %skëtu%s për tu kthyer tek konfigurimi i përgjithshëm"; $lang['General_settings'] = "Vetitë e përgjithshme të forumit(site)"; $lang['Server_name'] = "Domain Name"; $lang['Server_name_explain'] = "The domain name this board runs from"; $lang['Script_path'] = "Script path"; $lang['Script_path_explain'] = "The path where phpBB2 is located relative to the domain name"; $lang['Server_port'] = "Server Port"; $lang['Server_port_explain'] = "The port your server is running on, usually 80, only change if different"; $lang['Site_name'] = "Emri i websitit"; $lang['Site_desc'] = "Përshkrimi i websitit"; $lang['Board_disable'] = "Disaktivizoje websitin"; $lang['Board_disable_explain'] = "KUJDES!!!! Ky veprim do e bëjë forumin jofunksional. Nqs bëni logout pas disaktivizimit,nuk do keni mundësi që të bëni login!"; $lang['Acct_activation'] = "Mundëso aktivizimin e llogarisë nga"; $lang['Acc_None'] = "Askush"; // Këto janë 3 llojet e aktivizimit $lang['Acc_User'] = "Anëtari"; $lang['Acc_Admin'] = "Administratori"; $lang['Abilities_settings'] = "Veti Elementare të Anëtarëve dhe Forumeve"; $lang['Max_poll_options'] = "Nr. maksimal i mundësive për një votim"; $lang['Flood_Interval'] = "Flood Interval"; $lang['Flood_Interval_explain'] = "Numri i sekondave që një anëtar duhet të presë midis postimeve"; $lang['Board_email_form'] = "Përdorimi për e-mail"; $lang['Board_email_form_explain'] = "Anëtarët mund të dërgojnë e-mail nëpërmjet këtij serveri"; $lang['Topics_per_page'] = "Diskutime për faqe"; $lang['Posts_per_page'] = "Poste për faqe"; $lang['Hot_threshold'] = "Posts for Popular Threshold"; $lang['Default_style'] = "Paraqitja e paracaktuar"; $lang['Override_style'] = "Zëvendëso preferencën e përdoruesve?"; $lang['Override_style_explain'] = "Zëvendëson paraqitjen e preferuar të përdoruesve me paraqitjen e paracaktuar"; $lang['Default_language'] = "Gjuha e paracaktuar"; $lang['Date_format'] = "Formatimi i Datës"; $lang['System_timezone'] = "Brezi orar i sistemit"; $lang['Enable_gzip'] = "Mundëso kompresimin me GZip"; $lang['Enable_prune'] = "Mundëso shkurtimin/shartimin e forumeve"; $lang['Allow_HTML'] = "Lejo HTML"; $lang['Allow_BBCode'] = "Lejo BBCode"; $lang['Allowed_tags'] = "Shënjat HTML të lejuara"; $lang['Allowed_tags_explain'] = "Ndaji shënjat me presje"; $lang['Allow_smilies'] = "Lejo figurinat"; $lang['Smilies_path'] = "Shtegu i direktorisë së figurinave"; $lang['Smilies_path_explain'] = "Path under your phpBB root dir, e.g. images/smilies"; $lang['Allow_sig'] = "Lejo firmat"; $lang['Max_sig_length'] = "Madhësia maksimale e firmave"; $lang['Max_sig_length_explain'] = "Nr. maksimal i shkronjave të lejuara në një firmë"; $lang['Allow_name_change'] = "Lejo ndërrimin e username"; $lang['Avatar_settings'] = "Vetitë e Ikonave Personale"; $lang['Allow_local'] = "Mundëso galerinë e ikonave personale"; $lang['Allow_remote'] = "Mundëso ikona personale nga servera të tjerë"; $lang['Allow_remote_explain'] = "Ikona personale që ruhen në një websit tjetër"; $lang['Allow_upload'] = "Mundëso ngarkimin e ikonave personale"; $lang['Max_filesize'] = "Madhësia maksimale e ikonës personale"; $lang['Max_filesize_explain'] = "Vetëm për ikonat e ngarkuara ne këtë server"; $lang['Max_avatar_size'] = "Dimensionet maksimale të ikonave personale"; $lang['Max_avatar_size_explain'] = "(Gjatësi x Gjerësi në piksel)"; $lang['Avatar_storage_path'] = "Shtegu i magazinimit të ikonave personale"; $lang['Avatar_storage_path_explain'] = "Path under your phpBB root dir, e.g. images/avatars"; $lang['Avatar_gallery_path'] = "Shtegu i galerisë së ikonave personale"; $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'] = "Vetitë e E-mail"; $lang['Admin_email'] = "Adresa e email të administratorit"; $lang['Email_sig'] = "Firma e email-it"; $lang['Email_sig_explain'] = "Kjo firmë do u bashkangjitet në fund të gjithë mesazheve të derguara nga ky server"; $lang['Use_SMTP'] = "Përdor server SMTP per dërgimin e email-ave"; $lang['Use_SMTP_explain'] = "Përcaktoje këtë veti nqs doni/jeni i detyruar të mos përdorni programin mail te serverit"; $lang['SMTP_server'] = "Adresa e serverit SMTP"; $lang['SMTP_username'] = "SMTP Username"; $lang['SMTP_username_explain'] = "Only enter a username if your smtp server requires it"; $lang['SMTP_password'] = "SMTP Password"; $lang['SMTP_password_explain'] = "Only enter a password if your smtp server requires it"; $lang['Disable_privmsg'] = "Private Messaging"; $lang['Inbox_limits'] = "Maksimumi i posteve në Inbox"; $lang['Sentbox_limits'] = "Maksimumi i posteve në Sentbox"; $lang['Savebox_limits'] = "Maksimumi i posteve në Savebox"; $lang['Cookie_settings'] = "Vetitë e Cookie-s "; $lang['Cookie_settings_explain'] = "Këto të dhëna kontrollojnë se si cooki i dërgohet browser-it. Në shumicën e rasteve, vlerat e paracaktuara jane të mjaftueshme. Nqs keni nevojë ti ndryshoni, kini kujdes se të dhëna jokorrekte krijojne probleme me indentifikimin e anëtarëve."; $lang['Cookie_name'] = "Emri i Cookie"; $lang['Cookie_domain'] = "Domain i Cookie"; $lang['Cookie_path'] = "Shtegu i Cookie"; $lang['Session_length'] = "Zgjatja e sesionit [ në sekonda ]"; $lang['Cookie_secure'] = "Cookie e sigurtë [ https ]"; $lang['Session_length'] = "Session length [ seconds ]"; // // Forum Management // $lang['Forum_admin'] = "Administrim Forumi"; $lang['Forum_admin_explain'] = "Nga ky panel bëhet krijimi, fshirja, modifikimi, ri-renditja, dhe ri-sinkronizimi i kategorive dhe forumeve"; $lang['Edit_forum'] = "Modifiko forumin"; $lang['Create_forum'] = "Krijo forum"; $lang['Create_category'] = "Krijo kategori"; $lang['Remove'] = "Hiq"; $lang['Action'] = "Veprimi"; $lang['Update_order'] = "Rifresko renditjen"; $lang['Config_updated'] = "Rifreskimi i konfigurimit të forumit u bë në mënyrë të suksesshme"; $lang['Edit'] = "Modifiko"; $lang['Delete'] = "Fshi"; $lang['Move_up'] = "Lëvize sipër"; $lang['Move_down'] = "Lëvize poshtë"; $lang['Resync'] = "Ri-sinkronizo"; $lang['No_mode'] = "No mode was set"; $lang['Forum_edit_delete_explain'] = "Formulari i mëposhtëm ju jep mundësine e konfigurimit të opsioneve të përgjithshme. Për administrimin dhe konfigurimin e anëtarëve dhe forumeve, përdorni tabelat në krahun e majtë."; $lang['Move_contents'] = "Zhvendos gjithë përmbajtjen"; $lang['Forum_delete'] = "Fshije këtë forum"; $lang['Forum_delete_explain'] = "Formulari i mëposhtëm ju jep mundësine e fshirjes së një forumi (apo kategorie) dhe ruajtjen e gjithë mesazheve (forumeve) që përmban."; $lang['Forum_settings'] = "Vetitë e përgjithshme të forumit"; $lang['Forum_name'] = "Emri i forumit"; $lang['Forum_desc'] = "Përshkrimi"; $lang['Forum_status'] = "Statusi i forumit"; $lang['Forum_pruning'] = "Auto-shkurtim"; $lang['prune_freq'] = 'Kontrollo vjetërsinë e diskutimit cdo'; $lang['prune_days'] = "Hiq diskutimet ku nuk postohet prej"; $lang['Set_prune_data'] = "Ju zgjodhët auto-shkurtim për këtë forum por nuk specifikuat një frekuencë ose nr. e ditëve për shkurtim. Ju lutem shkoni mbrapsht dhe specifikoni këto veti."; $lang['Move_and_Delete'] = "Zhvendos dhe Fshi"; $lang['Delete_all_posts'] = "Fshi gjithë postet"; $lang['Nowhere_to_move'] = "S'ke ku e con"; $lang['Edit_Category'] = "Modifiko kategorinë"; $lang['Edit_Category_explain'] = "Përdor këtë formular për ndërrimin e emrit të kategorisë"; $lang['Forums_updated'] = "Informacioni rreth forumit dhe kategorisë u freskua në menyrë të suksesshme"; $lang['Must_delete_forums'] = "Fshi gjithë forumet në këtë kategori para se të fshish kategorinë vetë"; $lang['Click_return_forumadmin'] = "Kliko %skëtu%s për tu kthyer tek administrimi i forumeve"; // // Smiley Management // $lang['smiley_title'] = "Vegël për menaxhimin e figurinave"; $lang['smile_desc'] = "Nga ky panel ju mund të shtoni, hiqni dhe editoni figurinat që mund të përdoren nga përdoruesit."; $lang['smiley_config'] = "Konfigurimi i figurinave"; $lang['smiley_code'] = "Kodi i figurinave"; $lang['smiley_url'] = "Adresa e figurinës"; $lang['smiley_emot'] = "Emocioni i figurinës"; $lang['smile_add'] = "Shto një figurinë"; $lang['Smile'] = "Figurina"; $lang['Emotion'] = "Emocioni"; $lang['Select_pak'] = "Zgjidh skedarin paketë (.pak)"; $lang['replace_existing'] = "Zëvendëso figurinën egzistuese"; $lang['keep_existing'] = "Mbaje figurinën egzistuese"; $lang['smiley_import_inst'] = "You duhet të dekompresoni skedarin me figurina dhe vendosni figurinat në direktorinë e duhur. Pastaj zgjidhni informacionin e duhur në këtë formular që të importoni skedarin e figurinave (Smiley Pack)"; $lang['smiley_import'] = "Importo skedarin e figurinave (Smiley Pack)"; $lang['choose_smile_pak'] = "Zgjidh një nga skedarët e figurinave ( .pak)"; $lang['import'] = "Importo figurina"; $lang['smile_conflicts'] = "Cfarë duhet bërë në rast konflikti"; $lang['del_existing_smileys'] = "Fshi figurinat ekzistuese përpara se të importosh"; $lang['import_smile_pack'] = "Importo skedarin e figurinave"; $lang['export_smile_pack'] = "Krijo një skedar figurinash"; $lang['export_smiles'] = "Për të krijuar një skedar figurinash prej figurinave ekzistuese, kliko %skëtu%s për të shkarkuar skedarin smiles.pak Ndryshojini emrin skedarin nqs doni, po mos i ndryshoni -file extension-. Pastaj krijoni një skedar .zip që përmban të gjitha imazhet e figurinave plus skedarin .pak."; $lang['smiley_add_success'] = "Figurina u shtua në mënyrë të suksesshme."; $lang['smiley_edit_success'] = "Figurina u ri-freskua në mënyrë të suksesshme."; $lang['smiley_import_success'] = "Skedari i figurinave (Smiley Pack) u importua në mënyrë të suksesshme."; $lang['smiley_del_success'] = "Figurina u hoq në mënyrë të suksesshme."; $lang['Click_return_smileadmin'] = "Kliko %skëtu%s për ty kthyer tek Administrimi i Figurinave"; // // User Management // $lang['User_admin'] = "Administrimi i Anëtarëve"; $lang['User_admin_explain'] = "Këtu mund të ndryshoni informacionin mbi anëtarët dhe disa opcione specifike. Bëni modifikimin e autorizimeve me anë të panelit të përshtatshëm në krahun e majtë të panelit."; $lang['Look_up_user'] = "Analizo anëtarin"; $lang['Admin_user_fail'] = "Nuk u arrit të ri-freskohej profili i anëtarit."; $lang['Admin_user_updated'] = "Profili i këtij anëtari u ri-freskua në mënyrë të suksesshme."; $lang['Click_return_useradmin'] = "Kliko %skëtu%s për tu kthyer tek Administrimi i Anëtarëve"; $lang['User_delete'] = "Fshije këtë përdorues"; $lang['User_delete_explain'] = "Kliko këtu për ta fshirë këtë anëtar, ky veprim është i pakthyeshëm."; $lang['User_deleted'] = "Anëtari u fshi në mënyrë të suksesshme."; $lang['User_status'] = "Anëtari është aktiv"; $lang['User_allowpm'] = "Mund të dërgojë Mesazhe Private"; $lang['User_allowavatar'] = "Mund të shfaqë ikonën personale"; $lang['Admin_avatar_explain'] = "Këtu mund të shikoni dhe fshini ikonën aktuale personale të anëtarit."; $lang['User_special'] = "Fusha speciale vetëm për administratorët."; $lang['User_special_explain'] = "Këto fusha nuk mund të modifikohen nga anëtarët. Ju mund të vendosni statusin dhe veti të tjera që nuk i jepen anëtarëve."; // // Group Management // $lang['Group_administration'] = "Administrim i Grupeve"; $lang['Group_admin_explain'] = "Tek ky panel ju mund të administroni të gjithë grupet e përdoruesve. Fshi, krijo dhe modifiko grupet ekzistuese. Zgjidh moderatorët, hap/mbyll dhe vendos emrin dhe përshkrimin e grupit."; $lang['Error_updating_groups'] = "Pati një problem gjatë ri-freskimit të grupeve"; $lang['Updated_group'] = "Grupi u ri-freskua me sukses"; $lang['Added_new_group'] = "Grupi u krijua me sukses"; $lang['Deleted_group'] = "Grupi u fshi me sukses"; $lang['New_group'] = "Krijo grup të ri"; $lang['Edit_group'] = "Modifiko grupin"; $lang['group_name'] = "Emri i grupit"; $lang['group_description'] = "Përshkrimi i grupit"; $lang['group_moderator'] = "Moderatori i grupit"; $lang['group_status'] = "Statusi i grupit"; $lang['group_open'] = "Grup i hapur"; $lang['group_closed'] = "Grup i mbyllur"; $lang['group_hidden'] = "Grup i fshehte"; $lang['group_delete'] = "Fshi grupin"; $lang['group_delete_check'] = "Fshi këtë grup"; $lang['submit_group_changes'] = "Paraqit ndryshimet"; $lang['reset_group_changes'] = "Pastro ndryshimet"; $lang['No_group_name'] = "Specifiko emrin e këtij grupi"; $lang['No_group_moderator'] = "Specifiko moderatorin e këtij grupi"; $lang['No_group_mode'] = "Specifiko një mënyrë për këtë grup, hapur ose mbyllur"; $lang['delete_group_moderator'] = "Fshi moderatorin e vjetër të grupit?"; $lang['delete_moderator_explain'] = "Nqs jeni duke ndryshuar moderatorin e grupit, vër një kryq tek kjo kuti për të hequr moderatorin e vjetër nga grupi. Ndryshe, lëre bosh dhe moderatori i vjetër do bëhet një anëtar i thjeshtë i grupit."; $lang['Click_return_groupsadmin'] = "Kliko %skëtu%s për ty kthyer tek Administrimi i Grupeve"; $lang['Select_group'] = "Zgjidh një grup"; $lang['Look_up_group'] = "Analizo një grup"; // // Prune Administration // $lang['Forum_Prune'] = "Shkurto forumin"; $lang['Forum_Prune_explain'] = "Ky veprim do fshijë cdo temë ku nuk është postuar brënda afatit që ju keni përcaktuar. Nqs nuk përcaktoni një numër, atëherë gjithë temat do fshihen. Megjithatë, temat ku ka votime të hapura dhe lajmërimet duhen fshirë mekanikisht."; $lang['Do_Prune'] = "Bëje shkurtimin"; $lang['All_Forums'] = "Gjithë forumet"; $lang['Prune_topics_not_posted'] = "Shkurto temat pa pergjigje brënda"; $lang['Topics_pruned'] = "Temat e shkurtuara"; $lang['Posts_pruned'] = "Mesazhet e shkurtuara"; $lang['Prune_success'] = "Shkurtimi i forumeve u bë me sukses"; // // Word censor // $lang['Words_title'] = "Censurimi i fjalëve"; $lang['Words_explain'] = "Nga ky panel ju mund të shtoni, modifikoni, dhe hiqni fjalë që do censurohen automatikisht. Gjithashtu, emrat e anëtarëve nuk do mund të përmbajnë fjalë të tilla. Wildcards (*) are accepted in the word field, eg. *test* will match detestable, test* would match testing, *test would match detest."; $lang['Word'] = "Fjalë"; $lang['Edit_word_censor'] = "Modifiko censurën"; $lang['Replacement'] = "Zëvendësimi"; $lang['Add_new_word'] = "Shto një fjalë"; $lang['Update_word'] = "Ri-fresko censurën"; $lang['Must_enter_word'] = "You duhet të specifikoni një fjalë dhe zëvendësimin e saj"; $lang['No_word_selected'] = "Asnjë fjalë nuk është zgjedhur për modifikim"; $lang['Word_updated'] = "Censura e zgjedhur u ri-freskua me sukses"; $lang['Word_added'] = "Censura u shtua me sukses"; $lang['Word_removed'] = "Censura e zgjedhur u hoq me sukses"; $lang['Click_return_wordadmin'] = "Kliko %skëtu%s për tu kthyer tek Administrimi i Censurës"; // // Mass Email // $lang['Mass_email_explain'] = "Nga ky panel ju mund të dërgoni një e-mail tek të gjithë anëtarët e forumit, ose nje grupi specifik. Për të kryer këtë, një e-mail do i dërgohet adresës administrative të specifikuar, dhe një kopje karboni do u dërgohet gjithë marrësve. Kini parasysh se nqs i dërgoni e-mail nje grupi të madh personash, ky proces do kohë, kështu që prisni deri sa të njoftoheni se procesi mbaroi."; $lang['Compose'] = "Harto"; $lang['Recipients'] = "Marrësit"; $lang['All_users'] = "Të gjithë anëtarët"; $lang['Email_successfull'] = "Mesazhi u dërgua"; $lang['Click_return_massemail'] = "Kliko %skëtu%s për tu kthyer tek paneli i E-mail në Masë"; // // Ranks admin // $lang['Ranks_title'] = "Administrimi i Gradave"; $lang['Ranks_explain'] = "Ky formular mundëson shtimin, modifikimin dhe fshirjen e gradave. Gjithashtu, ju mund të krijoni grada të personalizuara të cilat i aplikohen përdoruesve nëpërmjet panelit të administrimit të përdoruesve."; $lang['Add_new_rank'] = "Shto një gradë"; $lang['Rank_title'] = "Titulli i gradës"; $lang['Rank_special'] = "Cakto si gradë speciale"; $lang['Rank_minimum'] = "Minimumi i mesazheve"; $lang['Rank_maximum'] = "Maksimumi i mesazheve"; $lang['Rank_image'] = "Ikona e gradës"; $lang['Rank_image_explain'] = "Përdore këtë për të specifikuar ikonën që shoqëron gradën"; $lang['Must_select_rank'] = "Zgjidh një gradë"; $lang['No_assigned_rank'] = "Nuk është dhënë ndonjë gradë speciale"; $lang['Rank_updated'] = "Grada u ri-freskua me sukses"; $lang['Rank_added'] = "Grada u shtua me sukses"; $lang['Rank_removed'] = "Grada u fshi me sukses"; $lang['No_update_ranks'] = "The rank was successfully deleted, however, user accounts using this rank were not updated. You will need to manually reset the rank on these accounts"; $lang['Click_return_rankadmin'] = "Kliko %skëtu%s për tu kthyer tek Administrimi i Gradave"; // // Disallow Username Admin // $lang['Disallow_control'] = "Kontrolli i emrave të ndaluar"; $lang['Disallow_explain'] = "Këtu mund të specifikoni emrat që nuk mund të përdoren. Disallowed usernames are allowed to contain a wildcard character of *. Kini parasysh se nuk mund të specifikoni një emër që është regjistruar tashmë. Fshini atë anëtar dhe pastaj ndalojeni atë fjalë."; $lang['Delete_disallow'] = "Fshi"; $lang['Delete_disallow_title'] = "Hiq një nga emrat e ndaluar"; $lang['Delete_disallow_explain'] = "Heqja e një emri nga lista e ndaluar bëhet duke e zgjedhur atë tek kjo listë dhe klikuar paraqit."; $lang['Add_disallow'] = "Shto"; $lang['Add_disallow_title'] = "Shto një emër të ndaluar"; $lang['Add_disallow_explain'] = "Ju mund të ndaloni një emër duke përdorur * në vend të cdo karakteri në atë pozicion."; $lang['No_disallowed'] = "Asnjë emër i ndaluar"; $lang['Disallowed_deleted'] = "Emri i ndaluar u fshi me sukses"; $lang['Disallow_successful'] = "Emri i ndaluar u shtua me sukses"; $lang['Disallowed_already'] = "Emri që shtuat nuk mund të ndalohet. Ky emër ose ekziston në listën e emrave të ndaluar, ose ekziston në listën e censurës ose është në përdorim nga një anëtar."; $lang['Click_return_disallowadmin'] = "Kliko %skëtu%s për tu kthyer tek Administrimi i emrave të ndaluar"; // // Styles Admin // $lang['Styles_admin'] = "Administrimi i stileve"; $lang['Styles_explain'] = "Me anë të këtij paneli mund të shtoni, hiqni dhe menaxhoni (shabllonet dhe motivet) në dispozicion të anëtarëve."; $lang['Styles_addnew_explain'] = "Lista e mëposhtme përmban të gjithë motivet që janë të mundshëm për shabllonet që keni. Artikujt në këtë listë nuk janë instaluar akoma në regjistrin e phpBB. Kliko butonin instalo për të instaluar një nga këto artikuj në databazë."; $lang['Select_template'] = "Zgjidh një shabllon"; $lang['Style'] = "Stili"; $lang['Template'] = "Shabllon"; $lang['Install'] = "Instalo"; $lang['Download'] = "Shkarko"; $lang['Edit_theme'] = "Modifiko motivin"; $lang['Edit_theme_explain'] = "Në formularin më poshtë modifiko vetitë e motivit që keni zgjedhur."; $lang['Create_theme'] = "Krijo motiv"; $lang['Create_theme_explain'] = "Përdor formularin e mëposhtëm për të krijuar një motiv për shabllonin e zgjedhur. Kur zgjidhni ngjyrat (për të cilat duhen përdorur numrat me bazë 16 --hexadecimal--) mos vendosni shenjën #. psh. #CC00BB është gabim."; $lang['Export_themes'] = "Eksporto motivet"; $lang['Export_explain'] = "Ky panel mundëson eksportimin e të dhënave të motivit për shabllonin e zgjedhur. Zgjidh shabllonin nga lista e mëposhtme dhe phpBB do krijojë automatikisht skedarin për konfigurimin e motivit dhe do provojë ta ruajë në direktorinë ku shablloni i zgjedhur rri. Nqs nuk mund ta ruani skedarin atje, do keni mundësinë për ta shkarkuar në kompjuterin tuaj. Në mënyrë që skedari të vendoset në direktorinë e shabllonit, webserveri duhet të ketë autorizim për të shkruar në atë direktori. Për më shumë info, shiko manualin e përdorimit."; $lang['Theme_installed'] = "Motivi i zgjedhur u instalua me sukses"; $lang['Style_removed'] = "Stili i zgjedhur u hoq nga regjistri. Për ta hequr këtë stil përfundimisht nga sistemi juaj, fshijeni këtë stil nga direktoria e shablloneve."; $lang['Theme_info_saved'] = "Informacioni i motivit për shabllonin e zgjedhur u ruajt. Rivendosni autorizimet në nivelin lexim-vetëm (read-only) për theme_info.cfg "; $lang['Theme_updated'] = "Motivi i zgjedhur u ri-freskua. Tashti duhet të eksportoni vetitë e reja të motivit"; $lang['Theme_created'] = "Motivi u krijua. Tashti duhet të eskportoni motivin e ri tek skedari i konfigurimit për ruajtje."; $lang['Confirm_delete_style'] = "Jeni i sigurtë për fshirjen e këtij stili"; $lang['Download_theme_cfg'] = "Eksportuesi nuk mundi të shkruajë skedarin e informacionit të motivit. Kliko butonin e meposhtëm për ta shkarkuar këtë skedar. Pasi ta keni shkarkuar, transferojeni tek direktoria që përmban skedarët e shablloneve. You mund ti arkivoni skedarët dhe ti shpërndani për përdorim diku tjetër."; $lang['No_themes'] = "Shablloni që zgjodhët nuk ka asnjë motiv të bashkangjitur. Për të krijuar një motiv të ri kliko butonin Krijo në anën e majtë."; $lang['No_template_dir'] = "Direktoria e shablloneve nuk hapet. Webserveri nuk mund ta lexojë ose direktoria nuk ekziston."; $lang['Cannot_remove_style'] = "Stili i zgjdhur nuk mund të fshihet sepse është stili i paracaktuar i forumi. Ndryshoni stilin e paracaktuar dh pastaj provoni nga e para"; $lang['Style_exists'] = "Emri i zgjedhur për këtë stil ekziston. Zgjidhni një emër tjetër"; $lang['Click_return_styleadmin'] = "Kliko %skëtu%s për tu kthyer tek Administratori i Stileve"; $lang['Theme_settings'] = "Vetitë e motivit"; $lang['Theme_element'] = "Elementi i motivit"; $lang['Simple_name'] = "Emër i thjeshtë"; $lang['Value'] = "Vlera"; $lang['Save_Settings'] = "Regjistro vetitë"; $lang['Stylesheet'] = "CSS Stylesheet"; $lang['Background_image'] = "Background Image"; $lang['Background_color'] = "Background Colour"; $lang['Theme_name'] = "Emri i Motivit"; $lang['Link_color'] = "Link Colour"; $lang['Text_color'] = "Ngjyra e tekstit"; $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'] = "Mirësevini tek instaluesi i phpBB v.2"; $lang['Initial_config'] = "Konfigurimi elementar"; $lang['DB_config'] = "Konfigurimi i regjistrit"; $lang['Admin_config'] = "Konfigurimi i administratorit"; $lang['continue_upgrade'] = "Once you have downloaded your config file to your local machine you may\"Continue Upgrade\" button below to move forward with the upgrade process. Please wait to upload the config file until the upgrade process is complete."; $lang['upgrade_submit'] = "Continue Upgrade"; $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['DB_Username'] = "Database Username"; $lang['DB_Password'] = "Database Password"; $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['NoFTP_config'] = "The attempt to ftp the config file into place failed. Please download the config file and ftp it into place manually."; $lang['Install'] = "Install"; $lang['Upgrade'] = "Upgrade"; $lang['Install_Method'] = "Choose your installation method"; $lang['Install_No_Ext'] = "The php configuration on your server doesn't support the database type that you choose"; $lang['Install_No_PCRE'] = "phpBB2 Requires the Perl-Compatible Regular Expressions Module for php which your php configuration doesn't appear to support!"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE --- <?php /*************************************************************************** * lang_bbcode.php [english] * ------------------- * begin : Wednesday Oct 3, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_bbcode.php,v 1.1 2002/04/01 12:45:01 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 to Albanian done by alket ---> alk...@ya... * http://www26.brinkster.com/alketttt/ * ***************************************************************************/ // // To add an entry to your BBCode guide simply add a line to this file in this format: // $faq[] = array("question", "answer"); // If you want to separate a section enter $faq[] = array("--","Block heading goes here if wanted"); // Links will be created automatically // // DO NOT forget the ; at the end of the line. // Do NOT put double quotes (") in your BBCode guide entries, if you absolutely must then escape them ie. \"something\" // // The BBCode guide items will appear on the BBCode guide page in the same order they are listed in this file // // If just translating this file please do not alter the actual HTML unless absolutely necessary, thanks :) // // In addition please do not translate the colours referenced in relation to BBCode any section, if you do // users browsing in your language may be confused to find they're BBCode doesn't work :D You can change // references which are 'in-line' within the text though. // $faq[] = array("--","Hyrje"); $faq[] = array("C'është BBCode?", "BBCode është një implementim special i HTML. Përdorimi i BBCode tek forumi juaj varet nga konfigurimi që ka bërë administratori. Për më tepër BBCode mund të aktivizohet ose c'aktivizohet në mesazhet individuale. BBCode është shumë i ngjashëm me HTML, tags janë mbyllur brenda kllapave katrore [ and ] në vend të < and > dhe ofron kontroll më të madh në formatimin e teksteve. Në varësi të shabllonit në përdorim, shtimi i BBCode në mesazhet tuaja është shumë i lehtë nëpërmjet kodeve të klikueshme mbi përmbajtjen e mesazhit në formularin e postimit. Megjithatë guida e mëposhtme mund t'ju hyjë në punë."); $faq[] = array("--","Formatimi i tekstit"); $faq[] = array("Si të krijoni tekst bold, underlined dhe italic.", "BBCode ju lejon ta ndryshoni stilin e tekstit shumë thjeshtë. Psh: <ul><li>Për ta bërë një tekst bold futeni midis <b>[b][/b]</b>, psh. <br /><br /><b>[b]</b>Përshëndetje<b>[/b]</b><br /><br />bëhet <b>Përshëndetje</b></li><li>Për nënvizim përdor <b>[u][/u]</b>, psh:<br /><br /><b>[u]</b>Mirëmëngjes<b>[/u]</b><br /><br />bëhet <u>Mirëmëngjes</u></li><li>Për të bërë tekstin me italics përdor <b>[i][/i]</b>, psh.<br /><br />Si jeni <b>[i]</b>Sonte?<b>[/i]</b><br /><br />del: Si jeni <i>Sonte?</i></li></ul>"); $faq[] = array("Si të ndryshohet ngjyra ose madhësia e tekstit.", "Përdorni kodet e mëposhtme për këtë, megjithatë kini parasysh që paraqitja në ekran varet nga sistemi dhe browser-i që përdoret: <ul><li>Ndryshimi i ngjyrës bëhet duke e futur tekstin midis <b>[color=][/color]</b>. Ju mund të specifikoni emrin e ngjyrës (psh. red - kuq, blue - blu, yellow - verdhë, etj.) ose kodin hegzadeksimal, psh. #FFFFFF, #000000. Psh, për të shkruar me të kuqe përdorni:<br /><br ><b>[color=red]</b>Hello!<b>[/color]</b><br /><br />ose<br /><br /><b>[color=#FF0000]</b>Hello!<b>[/color]</b><br /><br />dhe të dyja kodet do nxjerrin <span style=\"color:red\">Hello!</span></li><li>Ndryshimi i madhësisë së tekstit bëhet në mënyrë të ngjashme duke përdorur<b>[size=][/size]</b>. Ky kod varet nga shablloni në përdorim megjithatë formati i rekomanduar është një vlerë numerike që prezanton madhësinë e tekstit në piksel, duke filluar nga 1 (aq i vogël sa nuk e sheh dot) deri tek 29-ta (shumë i madh). Psh:<br /><br /><b>[size=9]</b>I vogël<b>[/size]</b><br /><br />do jetë zakonisht <span style=\"font-size:9px\">I vogël</span><br /><br />kurse:<br /><br /><b>[size=24]</b>I stërmadh!<b>[/size]</b><br /><br />do jetë <span style=\"font-size:24px\">I stërmadh!</span></li></ul>"); $faq[] = array("A mund ti kombinoj kodet e formatimit?", "Po, patjetër, psh. nqs doni të tërhiqni vëmendjen mund të shkruani:<br /><br /><b>[size=18][color=red][b]</b>Kujdes!<b>[/b][/color][/size]</b><br /><br />dhe kjo do nxjerrë <span style=\"color:red;font-size:18px\"><b>Kujdes!</b></span><br /><br />Kini parasysh që është përgjegjësia juaj ti mbyllni kodet e formatimit në mënyrë korrekte. Shembulli i mëposhtëm tregon një rast kur kodet nuk janë mbyllur në mënyrë korrekte:<br /><br /><b>[b][u]</b>Kjo është gabim<b>[/b][/u]</b>"); $faq[] = array("--","Si të citoni dhe tekstet me gjerësi fikse"); $faq[] = array("Si të citoni në përgjigjet tuaja", "Ka dy mënyra për të cituar, me ose pa referencë.<ul><li>Kur përdorni funksionin Cito në përgjigjet tuaja do shikoni që teksti i mesazhit shtohet në dritaren ku do shkruani i përfshirë në një bllok <b>[quote=\"\"][/quote]</b>. Kjo metodë ju lejon të citoni duke iu refereruar një personi. Psh. për të cituar dicka nga z.Arjan shkruani:<br /><br /><b>[quote=\"z.Arjan\"]</b>teksti që po citoni shkon këtu<b>[/quote]</b><br /><br />Kjo do rezultojë në shtimin e z.Arjan shkroi: përpara tekstit që po citoni. Ju <b>duhet</b> të vini \"\" rreth emrit; janë të domosdoshme.</li><li>Metoda e dytë ju lejon të citoni dicka pa specifikuar autorin. Për të bërë këtë rrethojeni tekstin mekodet <b>[quote][/quote]</b>. Kur të shikoni mesazhin do vëreni që do tregojë vetëm Kuotë: përpara tekstit. </li></ul>"); $faq[] = array("Shkruarja e kodeve kompjuterike dhe teksteve me gjerësi fikse", "Nqs doni të shkruani një pjesë me kod kompjuteri ose cdo lloj teksti që kërkon gjerësi fikse atëherë duhet ta rrethoni me kodet <b>[code][/code]</b>, psh.<br /><br /><b>[code]</b>echo \"Ky është kod komputeri\";<b>[/code]</b><br /><br />Formatimi i përdorur brënda kodeve <b>[code][/code]</b> ruhet kur përpunohet nga kompjuteri."); $faq[] = array("--","Prodhimi i listave"); $faq[] = array("Krijimi i një liste të pa-renditur", "BBCode lejon dy lloj listash, të renditura dhe të parenditura. Në thelb ato janë të njëjta me ekuivalentet në HTML. Një listë e parenditur tregon cdo send në listën tuaj në mënyrë të njëpasnjëshme të paraprira nga një karakter pike. Për të krijuar një listë të parenditur përdoret <b>[list][/list]</b> dhe përcakto cdo send të listës duke përdorur <b>[*]</b>. Psh. për të renditur ngjyrat tuaja të preferuara ju mund të përdorni:<br /><br /><b>[list]</b><br /><b>[*]</b>E kuqe<br /><b>[*]</b>Blu<br /><b>[*]</b>E verdhë<br /><b>[/list]</b><br /><br />Kjo do prodhonte listën<ul><li>E kuqe</li><li>Blu</li><li>E verdhë</li></ul>"); $faq[] = array("Krijimi i një liste të renditur", "Lloji i dytë i listës, lista e renditur, ju mundëson të kontrolloni se c'shkruhet para cdo sendi të listës. Për të krijuar një listë të renditur përdoret <b>[list=1][/list]</b> për të krijuar një listë me renditje numerike ose <b>[list=a][/list]</b> për një listë me renditje alfabetike. Njëlloj si tek lista e parenditur cdo send përcaktohet nga <b>[*]</b>. Psh:<br /><br /><b>[list=1]</b><br /><b>[*]</b>Shko në dyqan<br /><b>[*]</b>Bli një kompjuter<br /><b>[*]</b>Shaje kompjuterin kur nuk punon<br /><b>[/list]</b><br /><br />do prodhojë:<ol type=\"1\"><li>Shko në dyqan</li><li>Bli një kompjuter</li><li>Shaje kompjuterin kur nuk punon</li></ol>kurse për një listë me renditje alfabetike:<br /><br /><b>[list=a]</b><br /><b>[*]</b>Përgjigja e parë e mundshme<br /><b>[*]</b>Përgjigja e dytë e mundshme<br /><b>[*]</b>Përgjigja e tretë e mundshme<br /><b>[/list]</b><br /><br />e cila jep<ol type=\"a\"><li>Përgjigja e parë e mundshme</li><li>Përgjigja e dytë e mundshme</li><li>Përgjigja e tretë e mundshme</li></ol>"); $faq[] = array("--", "Krijimi i lidhjeve"); $faq[] = array("Lidhje me një websit tjetër", "BBCode i phpBB lejon disa mënyra për krijimin e URI-ve, Uniform Resource Indicators që njihen si URL.<ul><li>Mënyra e parë përdor kodin <b>[url=][/url]</b>, cdo gjë që shkruani mbas shenjës së barazimit do shkaktojë përmbajtjen e atij kodi të shërbejë si një URL. Psh. për tu lidhur me phpBB.com me këtë metodë shkruani:<br /><br /><b>[url=http://www.phpbb.com/]</b>Vizito phpBB!<b>[/url]</b><br /><br />kjo do prodhonte lidhjen që vijon, <a href=\"http://www.phpbb.com/\" target=\"_blank\">Vizito phpBB!</a> Do shikoni që lidhja hapet në një dritare të re duke i lejuar përdoruesit të vazhdojnë të përdorin forumin.</li><li>Nqs doni që adresa URL vetë të tregohet si lidhje shkruani:<br /><br /><b>[url]</b>http://www.phpbb.com/<b>[/url]</b><br /><br />Kjo do tregojë lidhjen që vijon, <a href=\"http://www.phpbb.com/\" target=\"_blank\">http://www.phpbb.com/</a></li><li>Për më tepër phpBB përdor dicka që quhet <i>Lidhjet Magjike</i>, kjo do e kthejë cdo URL me sintaksë korrekte në një lidhje pa patur nevojë te shkruhet ndonjë kod, nuk ka nevojë as për http://. Psh. shkruajtja e www.phpbb.com në mesazhin tuaj do krijojë një lidhje tek <a href=\"http://www.phpbb.com/\" target=\"_blank\">www.phpbb.com</a> në mënyrë automatike kur dikush lexon mesazhin. </li><li>E njëjta gjë aplikohet me adresat e postës elektronike, ju mund ta specifikoni adresën me anë të kodit, psh:<br /><br /><b>[email]</b>no...@do...<b>[/email]</b><br /><br />e cila do tregojë <a href=\"emailto:no...@do...\">no...@do...</a> ose mund të shtypni thjesht no...@do... në mesazhin tuaj dhe adresa do konvertohet në lidhje në mënyrë automatike.</li></ul>Ashtu si me të gjitha kodet e tjera BBCode URL-të mund të mbështjellin cdo lloj kodi tjetër BBCode, psh <b>[img][/img]</b> (lexo më poshtë), <b>[b][/b]</b>, etj. Ashtu si me kodet e formatimit është në dorën tuaj që kodet të jenë hapur dhe mbyllur në rradhën e duhur, psh: <br /><br /><b>[url=http://www.phpbb.com/][img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/url][/img]</b><br /><br /> <u>nuk</u> është korrekte gjë që mund të shkaktojë fshirjen e mesazhit tuaj."); $faq[] = array("--", "Tregimi i imazheve"); $faq[] = array("Shtimi i një imazhi në mesazhin tuaj", "BBCode i phpBB përfshin një kod për tregimin e imazheve në mesazhet tuaja. Duhet të keni dy gjëra parasysh kur përdorni këtë kod; e para, shumë përdorues nuk e cmojnë vendosjen e shumë imazheve nëpër poste dhe e dyta imazhi duhet të jetë diku në internet para se të tregohet në një mesazh (nuk mund të ekzistojë vetëm në kompjuterin tuaj, përvec rastit kur keni një webserver). phpBB nuk e mundëson mbajtjen e imazheve në një dosje lokale tashti për tashti (këto cështje do adresohen në versionin e mëvonshëm të phpBB). Për të treguar një imazh duhet ta rrethoni URL-në (adresën në internet) e imazhit me kodet <b>[img][/img]</b>. Psh:<br /><br /><b>[img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/img]</b><br /><br />Sic u tregua në seksionin e URL (mësipër) ju mund ta mbështillni një imazh me kodin <b>[url][/url]</b> nqs dëshironi që imazhi të shërbejë edhe si lidhje, psh.<br /><br /><b>[url=http://www.phpbb.com/][img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/img][/url]</b><br /><br />do prodhonte:<br /><br /><a href=\"http://www.phpbb.com/\" target=\"_blank\"><img src=\"http://www.phpbb.com/images/phplogo.gif\" border=\"0\" alt=\"\" /></a><br />"); $faq[] = array("--", "Cështje të tjera"); $faq[] = array("A mund të shtoj kodet e mia?", "Jo, nuk besojmë se është e mundur në phpBB 2.0 Po mundohemi të shtojmë kode BBCode të personalizueshme në versionin tjetër të phpBB."); // // This ends the BBCode guide entries // ?> --- NEW FILE --- <?php /*************************************************************************** * lang_faq.php [english] * ------------------- * begin : Wednesday Oct 3, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_faq.php,v 1.1 2002/04/01 12:45:01 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 to Albanian done by alket ---> alk...@ya... * http://www26.brinkster.com/alketttt/ * ***************************************************************************/ // // To add an entry to your FAQ simply add a line to this file in this format: // $faq[] = array("question", "answer"); // If you want to separate a section enter $faq[] = array("--","Block heading goes here if wanted"); // Links will be created automatically // // DO NOT forget the ; at the end of the line. // Do NOT put double quotes (") in your FAQ entries, if you absolutely must then escape them ie. \"something\" // // The FAQ items will appear on the FAQ page in the same order they are listed in this file // $faq[] = array("--","Probleme me regjistrimin dhe identifikimin"); $faq[] = array("Pse nuk identifikohem dot?", "A jeni regjistruar? Duhet të regjistroheni nqs doni të identifikoheni. A jeni përjashtuar nga forumi (një mesazh do shfaqet dhe do ju thotë që jeni përjashtuar)? Nqs po, kontaktoni webmasterin ose administratorin e forumit për sqarime të mëtejshme. Nqs jeni regjistruar dhe nuk jeni përjashtuar dhe prapë nuk identifikoheni dot, atëherë kontrolloni emrin e identifikimit dhe fjalëkalimin. Ky është problemi më i zakonshëm po nqs ju jeni i sigurtë që emri dhe fjalëkalimi janë korrektë kontaktoni administratorin e forumit."); $faq[] = array("Përse është e nevojshme që të regjistrohem?", "Kjo varet nga konfigurimi i forumit. Megjithatë, regjistrimi ju jep mundësi që nuk u jepen vizitorëve të paregjistruar. Regjistrimi ju mundëson caktimin e ikonave personale, përdorimin e mesazheve private, dërgimin e mesazheve me postë elektronike anëtarëve të tjerë, anëtarësimin në grupe përdoruesish, etj. Regjistrimi bëhet brenda disa minutash kështu që ju këshillojmë ta bëni këtë."); $faq[] = array("Pse c'indentifikohem automatikisht?", "Nqs nuk zgjidhni kutinë <i>Më identifiko automatikisht</i> kur identifikoheni, programi i forumit do ju mbajë mend vetëm për një kohë të caktuar. Kjo ndalon përdorimin e llogarisë tuaj nga dikush tjetër që përdor kompjuerin tuaj. Nqs doni të identifikoheni automatikisht, zgjidhni kutinë e përmendur më lartë; Ky veprim nuk rekomandohet nëse përdorni një kompjuter që nuk është juaji."); $faq[] = array("A është e mundur që emri im të mos shfaqet tek lista e përdoruesve në linjë?", "Po, tek profili juaj bëje mundësinë <i>Fshih qënien në linjë</i> aktive. Pasi bën këtë vetëm administratorët dhe ti mund të shikojne emrin tënd. Ti do numërohesh si përdorues i fshehur."); $faq[] = array("Humba fjalëkalimin!", "Mos u frikësoni. Megjithëse fjalëkalimi i vjetër nuk mund të shikohet, ai mund të rishkruhet. Për të bërë këtë shko tek faqja e identifikimit dhe kliko <u>Harrova fjalëkalimin</u>, ndiq udhëzimet dhe brënda disa minutash do keni një fjalëkalim të ri."); $faq[] = array("U regjistrova po nuk identifikohem dot!", "Në fillim kontrollo nëse po specifikon emrin dhe fjalëkalimin e duhur. Nqs ata janë korrekt, dy gjëra mund të ndodhin: Nqs COPPA është aktivizuar dhe ju zgjodhët <u>Jam nën 13 vjec</u> kur u regjistruat, ndiq udhëzimet që tu dërguan. Nqs COPPA nuk është aktivizuar, a ka nevojë për aktivizim llogaria juaj? Disa forume kërkojnë aktivizim të llogarisë nga ju ose administratori para se të identifikoheni. Kjo gjë duhet tu thuhej në momentin që u regjistruat. Nqs morët një mesazh me postë elektronike, ndiqni udhëzimet, nqs jo verifikoni adresën tuaj të postës elektronike. Një prej arsyeve që aktivizimi kërkohet është parandalimi i regjistrimit me adresa që nuk ekzistojnë. Nqs jeni i sigurtë që adresa juaj e postës elektronike është korrekte, kontaktoni administratorin e forumit."); $faq[] = array("U regjistrova kohë më parë po nuk identifikohem dot më!", "Arsyet më të zakonshme janë specifikimi i gabuar i emrit të identifikimit ose fjalëkalimit (shikoni postën elektronike me adresën e së cilës u u regjistruat për këto) ose administratori ka fshirë llogarinë tuaj për të zvogëluar regjistrin e forumit. Provoni të regjistroheni prapë dhe të merrni pjesë në diskutime."); $faq[] = array("--","Preferencat dhe vetitë e përdoruesve"); $faq[] = array("Si mund ti ndryshoj vetitë e mia?", "Të gjitha vetitë tuaja (nqs jeni regjistruar) ruhen ne regjistër. Klikoni <u>Profili</u> pë të modifikuar të gjitha vetitë e profilit tuaj (zakonisht shfaqet në fillim të faqes"); $faq[] = array("Ora nuk është e saktë!", "Ora është përgjithësisht e saktë, megjithatë ju mund të jeni duke parë orën e një brezi tjetë orar. Në këtë rast duhet të ndryshoni brezin orar ku jeni tek profili juaj, psh. Londër, Paris, New York, Sidnei, etj. Vini re se brezi orar ashtu si shumë veti të tjera mund të ndryshoshet vetëm nqs jeni i regjistruar"); $faq[] = array("E ndryshova brezin orar po ora është prapë gabim!", "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("Gjuha ime nuk është në listë!", "Kjo ndodh se ose administratori nuk e ka instaluar ose paketa për gjuhën që doni nuk ekziston. Provoni ti kërkoni administratorit ta instalojë gjuhën që doni; nqs nuk ekziston mos merrni leje dhe krijoni vetë një përkthim të ri. Më shumë informacion ka tek faqja e phpBB Group (shiko lidhjen në fund të faqes)"); $faq[] = array("Si mund të vendos një imazh nën emrin tim?", "Zakonisht ka dy imazhe nën emrin tuaj. I pari është imazhi që tregon gradën tuaj dhe zakonisht përbëhet nga disa yje që tregojnë se sa mesazhe keni shkruar në forum. Nën këtë mund të jetë një imazh më i madh që njihet si ikona personale. Aktivizimi dhe mënyra e përdorjes së ikonave personale është në dorë të administratorit të forumit. Nqs nuk keni mundësi ti përdorni ikonat personale, pyesni administratorin për arsyet."); $faq[] = array("Si mund ta ndryshoj gradën?", "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... [truncated message content] |
|
From: Paul S. O. <ps...@us...> - 2002-04-01 12:44:18
|
Update of /cvsroot/phpbb/phpBB2/language/lang_albanian/email In directory usw-pr-cvs1:/tmp/cvs-serv30353/email Log Message: Directory /cvsroot/phpbb/phpBB2/language/lang_albanian/email added to the repository |
|
From: Paul S. O. <ps...@us...> - 2002-04-01 12:43:49
|
Update of /cvsroot/phpbb/phpBB2/language/lang_albanian In directory usw-pr-cvs1:/tmp/cvs-serv30258/lang_albanian Log Message: Directory /cvsroot/phpbb/phpBB2/language/lang_albanian added to the repository |
|
From: Doug K. <dou...@us...> - 2002-03-31 19:13:08
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv6785
Modified Files:
search.php
Log Message:
Fixing bug 536812: search.php - total_match_count
Thanks acydburn!
Not a big deal, just did what acydburn recommended.
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/search.php,v
retrieving revision 1.71
retrieving revision 1.72
diff -C2 -r1.71 -r1.72
*** search.php 31 Mar 2002 16:08:06 -0000 1.71
--- search.php 31 Mar 2002 19:13:06 -0000 1.72
***************
*** 1164,1167 ****
--- 1164,1171 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
}
+ else
+ {
+ message_die(GENERAL_MESSAGE, $lang['No_search_match']);
+ }
}
***************
*** 1295,1297 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 1299,1301 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
|
|
From: Paul S. O. <ps...@us...> - 2002-03-31 16:08:10
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv2494
Modified Files:
search.php
Log Message:
I'm sooo bored with re-fixing things
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/search.php,v
retrieving revision 1.70
retrieving revision 1.71
diff -C2 -r1.70 -r1.71
*** search.php 31 Mar 2002 13:47:53 -0000 1.70
--- search.php 31 Mar 2002 16:08:06 -0000 1.71
***************
*** 593,597 ****
else
{
! if ( is_int($search_id) )
{
$sql = "SELECT search_array
--- 593,597 ----
else
{
! if ( intval($search_id) )
{
$sql = "SELECT search_array
|
|
From: Paul S. O. <ps...@us...> - 2002-03-31 13:58:06
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv3694 Modified Files: index.php Log Message: Output online users explanation Index: index.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/index.php,v retrieving revision 1.98 retrieving revision 1.99 diff -C2 -r1.98 -r1.99 *** index.php 31 Mar 2002 00:06:33 -0000 1.98 --- index.php 31 Mar 2002 13:58:01 -0000 1.99 *************** *** 278,281 **** --- 278,282 ---- 'L_NO_NEW_POSTS_LOCKED' => $lang['No_new_posts_locked'], 'L_NEW_POSTS_LOCKED' => $lang['New_posts_locked'], + 'L_ONLINE_EXPLAIN' => $lang['Online_explain'], 'L_MODERATOR' => $lang['Moderators'], |
|
From: Paul S. O. <ps...@us...> - 2002-03-31 13:58:01
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv3660/templates/subSilver
Modified Files:
index_body.tpl
Log Message:
Output online users explanation
Index: index_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/index_body.tpl,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** index_body.tpl 31 Mar 2002 00:06:34 -0000 1.21
--- index_body.tpl 31 Mar 2002 13:57:56 -0000 1.22
***************
*** 61,64 ****
--- 61,68 ----
</table>
+ <table width="100%" cellpadding="1" cellspacing="1" border="0">
+ <td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
+ </table>
+
<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
|
|
From: Paul S. O. <ps...@us...> - 2002-03-31 13:47:58
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv2155
Modified Files:
search.php
Log Message:
search_id change broke various other search options, fixed
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/search.php,v
retrieving revision 1.69
retrieving revision 1.70
diff -C2 -r1.69 -r1.70
*** search.php 31 Mar 2002 00:06:33 -0000 1.69
--- search.php 31 Mar 2002 13:47:53 -0000 1.70
***************
*** 67,71 ****
}
! $search_id = ( isset($HTTP_GET_VARS['search_id']) ) ? intval($HTTP_GET_VARS['search_id']) : '';
$show_results = ( isset($HTTP_POST_VARS['show_results']) ) ? $HTTP_POST_VARS['show_results'] : 'posts';
--- 67,71 ----
}
! $search_id = ( isset($HTTP_GET_VARS['search_id']) ) ? $HTTP_GET_VARS['search_id'] : '';
$show_results = ( isset($HTTP_POST_VARS['show_results']) ) ? $HTTP_POST_VARS['show_results'] : 'posts';
***************
*** 593,611 ****
else
{
! $sql = "SELECT search_array
! FROM " . SEARCH_TABLE . "
! WHERE search_id = $search_id
! AND session_id = '". $userdata['session_id'] . "'";
! if ( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, 'Could not obtain search results', '', __LINE__, __FILE__, $sql);
! }
! if ( $row = $db->sql_fetchrow($result) )
! {
! $search_data = unserialize($row['search_array']);
! for($i = 0; $i < count($store_vars); $i++)
{
! $$store_vars[$i] = $search_data[$store_vars[$i]];
}
}
--- 593,614 ----
else
{
! if ( is_int($search_id) )
{
! $sql = "SELECT search_array
! FROM " . SEARCH_TABLE . "
! WHERE search_id = $search_id
! AND session_id = '". $userdata['session_id'] . "'";
! if ( !($result = $db->sql_query($sql)) )
! {
! message_die(GENERAL_ERROR, 'Could not obtain search results', '', __LINE__, __FILE__, $sql);
! }
! if ( $row = $db->sql_fetchrow($result) )
{
! $search_data = unserialize($row['search_array']);
! for($i = 0; $i < count($store_vars); $i++)
! {
! $$store_vars[$i] = $search_data[$store_vars[$i]];
! }
}
}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-31 02:42:27
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv8492
Modified Files:
viewonline.php
Log Message:
Minor update
Index: viewonline.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewonline.php,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -r1.50 -r1.51
*** viewonline.php 31 Mar 2002 00:06:33 -0000 1.50
--- viewonline.php 31 Mar 2002 02:42:24 -0000 1.51
***************
*** 59,63 ****
$sql = "SELECT forum_name, forum_id
FROM " . FORUMS_TABLE;
! if( $result = $db->sql_query($sql) )
{
while( $row = $db->sql_fetchrow($result) )
--- 59,63 ----
$sql = "SELECT forum_name, forum_id
FROM " . FORUMS_TABLE;
! if ( $result = $db->sql_query($sql) )
{
while( $row = $db->sql_fetchrow($result) )
***************
*** 91,95 ****
}
! if( $row = $db->sql_fetchrow($result) )
{
$guest_users = 0;
--- 91,95 ----
}
! if ( $row = $db->sql_fetchrow($result) )
{
$guest_users = 0;
***************
*** 158,165 ****
$which_counter = 'guest_counter';
$which_row = 'guest_user_row';
-
- $prev_ip = $row['session_ip'];
}
}
if ( $view_online )
--- 158,165 ----
$which_counter = 'guest_counter';
$which_row = 'guest_user_row';
}
}
+
+ $prev_ip = $row['session_ip'];
if ( $view_online )
|
|
From: Paul S. O. <ps...@us...> - 2002-03-31 00:28:12
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv17400/templates/subSilver
Modified Files:
bbcode.tpl
Log Message:
oops, quote/code table width was 80% ... forgot to change it back to 90%
Index: bbcode.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/bbcode.tpl,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** bbcode.tpl 31 Mar 2002 00:06:34 -0000 1.8
--- bbcode.tpl 31 Mar 2002 00:28:09 -0000 1.9
***************
*** 8,12 ****
<!-- BEGIN quote_username_open --></span>
! <table width="80%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{USERNAME} {L_WROTE}:</b></span></td>
--- 8,12 ----
<!-- BEGIN quote_username_open --></span>
! <table width="90%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{USERNAME} {L_WROTE}:</b></span></td>
***************
*** 15,19 ****
<td class="quote"><!-- END quote_username_open -->
<!-- BEGIN quote_open --></span>
! <table width="80%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{L_QUOTE}:</b></span></td>
--- 15,19 ----
<td class="quote"><!-- END quote_username_open -->
<!-- BEGIN quote_open --></span>
! <table width="90%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{L_QUOTE}:</b></span></td>
***************
*** 27,31 ****
<!-- BEGIN code_open --></span>
! <table width="80%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{L_CODE}:</b></span></td>
--- 27,31 ----
<!-- BEGIN code_open --></span>
! <table width="90%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{L_CODE}:</b></span></td>
|
|
From: Paul S. O. <ps...@us...> - 2002-03-31 00:07:51
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv13265
Modified Files:
config.php
Log Message:
Going to have change doing this from "doing a Bart" to "doing a Paul" before much longer ...
Index: config.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/config.php,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -r1.50 -r1.51
*** config.php 31 Mar 2002 00:06:33 -0000 1.50
--- config.php 31 Mar 2002 00:07:48 -0000 1.51
***************
*** 1,51 ****
- <?php
-
- //
- // phpBB 2.x auto-generated config file
- // Do not change anything in this file!
- //
-
- $dbms = "mysql4";
- $dbhost = "localhost";
- $dbname = "dev_starstreak_net";
- $dbuser = "devhttp";
- $dbpasswd = "efx2KarizonaD";
-
- $dbhost = "localhost";
- $dbname = "phpbb_com";
- $dbuser = "devhttp";
- $dbpasswd = "efx2KarizonaD";
-
- /*
- $dbhost = "localhost";
- $dbname = "phpbb_test";
- $dbuser = "devhttp";
- $dbpasswd = "efx2KarizonaD";
-
- $dbms = "mssql-odbc";
-
- $dbhost = "mssql_phpbb_odbc";
- $dbname = "";
- $dbuser = "phpbb";
- $dbpasswd = "efx2000";
-
- $dbms = "msaccess";
-
- $dbhost = "phpbb_msaccess_odbc";
- $dbname = "";
- $dbuser = "devhttp";
- $dbpasswd = "efx2KarizonaD";
-
- $dbms = "mssql";
-
- $dbhost = "localhost";
- $dbname = "phpbb";
- $dbuser = "phpbb";
- $dbpasswd = "efx2000";
- */
-
- $table_prefix = "phpbb_";
-
- define('PHPBB_INSTALLED', true);
-
- ?>
\ No newline at end of file
--- 0 ----
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv12947/templates/subSilver
Modified Files:
agreement.tpl bbcode.tpl confirm_body.tpl error_body.tpl
faq_body.tpl groupcp_info_body.tpl groupcp_user_body.tpl
index_body.tpl jumpbox.tpl memberlist_body.tpl
message_body.tpl modcp_body.tpl modcp_move.tpl modcp_split.tpl
modcp_viewip.tpl overall_footer.tpl overall_header.tpl
posting_body.tpl posting_poll_body.tpl posting_preview.tpl
posting_topic_review.tpl privmsgs_body.tpl
privmsgs_read_body.tpl profile_add_body.tpl
profile_avatar_gallery.tpl profile_send_email.tpl
profile_view_body.tpl search_results_posts.tpl
search_results_topics.tpl search_username.tpl
simple_footer.tpl viewforum_body.tpl viewonline_body.tpl
viewtopic_body.tpl viewtopic_poll_ballot.tpl
Log Message:
pre-freeze on main templates, various bug fixes (highlighting search results, various search related issues, blah blah). These updates need _thorough_ checking, quickly
Index: agreement.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/agreement.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** agreement.tpl 15 Dec 2001 16:51:04 -0000 1.4
--- agreement.tpl 31 Mar 2002 00:06:34 -0000 1.5
***************
*** 1,21 ****
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
! </tr>
</table>
! <table width="100%" border="0" cellspacing="1" cellpadding="3" class="forumline">
! <tr>
! <th valign="middle" class="thHead" height="25"><span class="tableTitle">{SITENAME}
! - {REGISTRATION}</span></th>
! </tr>
! <tr>
! <td align="center" class="row1">
! <table width="80%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td><span class="genmed"><br />{AGREEMENT}<br /><br /><br /><div align="center"><a href="{U_AGREE_OVER13}" class="genmed">{AGREE_OVER_13}</a><br /><br /><a href="{U_AGREE_UNDER13}" class="genmed">{AGREE_UNDER_13}</a><br /><br /><a href="{U_INDEX}" class="genmed">{DO_NOT_AGREE}</a></div><br /></span></td>
! </tr>
! </table>
! </td>
! </tr>
</table>
--- 1,19 ----
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left"><span class="nav"><a class="nav" href="{U_INDEX}">{L_INDEX}</a></span></td>
! </tr>
</table>
!
! <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
! <tr>
! <th class="thHead" height="25" valign="middle"><span class="tableTitle">{SITENAME} - {REGISTRATION}</span></th>
! </tr>
! <tr>
! <td class="row1" align="center"><table width="80%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td><span class="genmed"><br />{AGREEMENT}<br /><br /><br /><div align="center"><a href="{U_AGREE_OVER13}" class="genmed">{AGREE_OVER_13}</a><br /><br /><a href="{U_AGREE_UNDER13}" class="genmed">{AGREE_UNDER_13}</a><br /><br /><a href="{U_INDEX}" class="genmed">{DO_NOT_AGREE}</a></div><br /></span></td>
! </tr>
! </table></td>
! </tr>
</table>
Index: bbcode.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/bbcode.tpl,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** bbcode.tpl 12 Jan 2002 22:58:22 -0000 1.7
--- bbcode.tpl 31 Mar 2002 00:06:34 -0000 1.8
***************
*** 1,108 ****
! <!-- BEGIN ulist_open -->
! <ul>
! <!-- END ulist_open -->
! <!-- BEGIN ulist_close -->
! </ul>
! <!-- END ulist_close -->
!
!
! <!-- BEGIN olist_open -->
! <ol type="{LIST_TYPE}">
! <!-- END olist_open -->
! <!-- BEGIN olist_close -->
! </ol>
! <!-- END olist_close -->
!
! <!-- BEGIN listitem -->
! <li>
! <!-- END listitem -->
!
! <!-- BEGIN quote_username_open -->
! </span>
! <table border="0" align="center" width="90%" cellpadding="3" cellspacing="1">
<tr>
<td><span class="genmed"><b>{USERNAME} {L_WROTE}:</b></span></td>
</tr>
<tr>
! <td class="quote">
! <!-- END quote_username_open -->
!
! <!-- BEGIN quote_open -->
! </span>
! <table border="0" align="center" width="90%" cellpadding="3" cellspacing="1">
<tr>
<td><span class="genmed"><b>{L_QUOTE}:</b></span></td>
</tr>
<tr>
! <td class="quote">
! <!-- END quote_open -->
! <!-- BEGIN quote_close -->
! </td>
</tr>
</table>
! <span class="postbody">
! <!-- END quote_close -->
! <!-- BEGIN code_open -->
! </span>
! <table border="0" align="center" width="90%" cellpadding="3" cellspacing="1">
<tr>
<td><span class="genmed"><b>{L_CODE}:</b></span></td>
</tr>
<tr>
! <td class="code">
! <!-- END code_open -->
! <!-- BEGIN code_close -->
! </td>
</tr>
</table>
! <span class="postbody">
! <!-- END code_close -->
! <!-- BEGIN b_open -->
! <span style="font-weight: bold">
! <!-- END b_open -->
! <!-- BEGIN b_close -->
! </span>
! <!-- END b_close -->
!
! <!-- BEGIN u_open -->
! <span style="text-decoration: underline">
! <!-- END u_open -->
! <!-- BEGIN u_close -->
! </span>
! <!-- END u_close -->
!
! <!-- BEGIN i_open -->
! <span style="font-style: italic">
! <!-- END i_open -->
! <!-- BEGIN i_close -->
! </span>
! <!-- END i_close -->
!
! <!-- BEGIN color_open -->
! <span style="color: {COLOR}">
! <!-- END color_open -->
! <!-- BEGIN color_close -->
! </span>
! <!-- END color_close -->
!
! <!-- BEGIN size_open -->
! <span style="font-size: {SIZE}px; line-height: normal">
! <!-- END size_open -->
! <!-- BEGIN size_close -->
! </span>
! <!-- END size_close -->
!
! <!-- BEGIN img -->
! <img src="{URL}" border="0" />
! <!-- END img -->
!
! <!-- BEGIN url -->
! <a href="{URL}" target="_blank" class="postlink">{DESCRIPTION}</a>
! <!-- END url -->
!
! <!-- BEGIN email -->
! <a href="mailto:{EMAIL}">{EMAIL}</A>
! <!-- END email -->
--- 1,60 ----
! <!-- BEGIN ulist_open --><ul><!-- END ulist_open -->
! <!-- BEGIN ulist_close --></ul><!-- END ulist_close -->
!
! <!-- BEGIN olist_open --><ol type="{LIST_TYPE}"><!-- END olist_open -->
! <!-- BEGIN olist_close --></ol><!-- END olist_close -->
!
! <!-- BEGIN listitem --><li><!-- END listitem -->
!
! <!-- BEGIN quote_username_open --></span>
! <table width="80%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{USERNAME} {L_WROTE}:</b></span></td>
</tr>
<tr>
! <td class="quote"><!-- END quote_username_open -->
! <!-- BEGIN quote_open --></span>
! <table width="80%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{L_QUOTE}:</b></span></td>
</tr>
<tr>
! <td class="quote"><!-- END quote_open -->
! <!-- BEGIN quote_close --></td>
</tr>
</table>
! <span class="postbody"><!-- END quote_close -->
! <!-- BEGIN code_open --></span>
! <table width="80%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<td><span class="genmed"><b>{L_CODE}:</b></span></td>
</tr>
<tr>
! <td class="code"><!-- END code_open -->
! <!-- BEGIN code_close --></td>
</tr>
</table>
! <span class="postbody"><!-- END code_close -->
!
!
! <!-- BEGIN b_open --><span style="font-weight: bold"><!-- END b_open -->
! <!-- BEGIN b_close --></span><!-- END b_close -->
!
! <!-- BEGIN u_open --><span style="text-decoration: underline"><!-- END u_open -->
! <!-- BEGIN u_close --></span><!-- END u_close -->
!
! <!-- BEGIN i_open --><span style="font-style: italic"><!-- END i_open -->
! <!-- BEGIN i_close --></span><!-- END i_close -->
!
! <!-- BEGIN color_open --><span style="color: {COLOR}"><!-- END color_open -->
! <!-- BEGIN color_close --></span><!-- END color_close -->
!
! <!-- BEGIN size_open --><span style="font-size: {SIZE}px; line-height: normal"><!-- END size_open -->
! <!-- BEGIN size_close --></span><!-- END size_close -->
!
! <!-- BEGIN img --><img src="{URL}" border="0" /><!-- END img -->
+ <!-- BEGIN url --><a href="{URL}" target="_blank" class="postlink">{DESCRIPTION}</a><!-- END url -->
! <!-- BEGIN email --><a href="mailto:{EMAIL}">{EMAIL}</A><!-- END email -->
Index: confirm_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/confirm_body.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** confirm_body.tpl 1 Oct 2001 23:22:18 -0000 1.2
--- confirm_body.tpl 31 Mar 2002 00:06:34 -0000 1.3
***************
*** 1,21 ****
! <table width="100%" border="0" cellspacing="1" cellpadding="3" class="forumline">
! <tr>
! <th class="thHead" valign="middle" height="25"><span class="tableTitle">{MESSAGE_TITLE}</span></th>
! </tr>
! <tr>
! <td class="row1" align="center">
! <form action="{S_CONFIRM_ACTION}" method="POST">
! <span class="gen"><br />
! {MESSAGE_TEXT}<br />
! <br />
! {S_HIDDEN_FIELDS}
! <input type="submit" name="confirm" value="{L_YES}" class="mainoption" />
!
! <input type="submit" name="cancel" value="{L_NO}" class="liteoption" />
! </span>
! </form>
! </td>
! </tr>
</table>
! <br />
--- 1,17 ----
! <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td class="nav" align="left"><a class="nav" href="{U_INDEX}">{L_INDEX}</a></td>
! </tr>
</table>
!
! <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
! <tr>
! <th class="thHead" height="25" valign="middle"><span class="tableTitle">{MESSAGE_TITLE}</span></th>
! </tr>
! <tr>
! <td class="row1" align="center"><form action="{S_CONFIRM_ACTION}" method="post"><span class="gen"><br />{MESSAGE_TEXT}<br /><br />{S_HIDDEN_FIELDS}<input type="submit" name="confirm" value="{L_YES}" class="mainoption" /> <input type="submit" name="cancel" value="{L_NO}" class="liteoption" /></span></form></td>
! </tr>
! </table>
!
! <br clear="all" />
Index: error_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/error_body.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** error_body.tpl 9 Nov 2001 13:15:36 -0000 1.3
--- error_body.tpl 31 Mar 2002 00:06:34 -0000 1.4
***************
*** 1,19 ****
! <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
! <tr>
! <td>
! <table width="100%" border="0" cellspacing="0" cellpadding="1">
! <tr>
! <td> </td>
! </tr>
! <tr>
! <td align="center"><span class="error">{ERROR_MESSAGE}</span></td>
! </tr>
! <tr>
! <td> </td>
! </tr>
! </table>
! </td>
! </tr>
</table>
--- 1,17 ----
! <table class="forumline" width="100%" cellspacing="1" cellpadding="4" border="0">
! <tr>
! <td><table width="100%" cellspacing="0" cellpadding="1" border="0">
! <tr>
! <td> </td>
! </tr>
! <tr>
! <td align="center"><span class="error">{ERROR_MESSAGE}</span></td>
! </tr>
! <tr>
! <td> </td>
! </tr>
! </table></td>
! </tr>
</table>
Index: faq_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/faq_body.tpl,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** faq_body.tpl 22 Dec 2001 15:51:48 -0000 1.9
--- faq_body.tpl 31 Mar 2002 00:06:34 -0000 1.10
***************
*** 1,23 ****
! <table width="100%" cellspacing="2" cellpadding="2" border="0">
! <tr>
! <td align="left" valign="bottom" nowrap><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
! </tr>
</table>
! <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline" align="center">
<tr>
<th class="thHead">{L_FAQ_TITLE}</th>
</tr>
! <tr><td class="row1">
! <!-- BEGIN faq_block_link -->
! <span class="gen"><b>{faq_block_link.BLOCK_TITLE}</b><br /> </span>
! <!-- BEGIN faq_row_link -->
! <span class="gen"><a href="{faq_block_link.faq_row_link.U_FAQ_LINK}" class="postlink">{faq_block_link.faq_row_link.FAQ_LINK}</a></span><br />
! <!-- END faq_row_link -->
! <br />
! <!-- END faq_block_link -->
! </td><tr>
! <td height="28" class="catBottom"> </td>
</tr>
</table>
--- 1,26 ----
! <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left" class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></td>
! </tr>
</table>
! <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
<th class="thHead">{L_FAQ_TITLE}</th>
</tr>
! <tr>
! <td class="row1">
! <!-- BEGIN faq_block_link -->
! <span class="gen"><b>{faq_block_link.BLOCK_TITLE}</b></span><br />
! <!-- BEGIN faq_row_link -->
! <span class="gen"><a href="{faq_block_link.faq_row_link.U_FAQ_LINK}" class="postlink">{faq_block_link.faq_row_link.FAQ_LINK}</a></span><br />
! <!-- END faq_row_link -->
! <br />
! <!-- END faq_block_link -->
! </td>
! </tr>
! <tr>
! <td class="catBottom" height="28"> </td>
</tr>
</table>
***************
*** 26,39 ****
<!-- BEGIN faq_block -->
! <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline" align="center">
<tr>
! <td height="28" class="catHead" align="center"><span class="cattitle">{faq_block.BLOCK_TITLE}</span></td>
</tr>
<!-- BEGIN faq_row -->
<tr>
! <td align="left" valign="top" class="{faq_block.faq_row.ROW_CLASS}"><span class="postbody"><a name="{faq_block.faq_row.U_FAQ_ID}"></a><b>{faq_block.faq_row.FAQ_QUESTION}</b></span><br /><span class="postbody">{faq_block.faq_row.FAQ_ANSWER}<br /><a href="#Top" class="postlink">{L_BACK_TO_TOP}</a></span></td>
</tr>
<tr>
! <td height="1" class="spaceRow"><img src="templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
<!-- END faq_row -->
--- 29,42 ----
<!-- BEGIN faq_block -->
! <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
<tr>
! <td class="catHead" height="28" align="center"><span class="cattitle">{faq_block.BLOCK_TITLE}</span></td>
</tr>
<!-- BEGIN faq_row -->
<tr>
! <td class="{faq_block.faq_row.ROW_CLASS}" align="left" valign="top"><span class="postbody"><a name="{faq_block.faq_row.U_FAQ_ID}"></a><b>{faq_block.faq_row.FAQ_QUESTION}</b></span><br /><span class="postbody">{faq_block.faq_row.FAQ_ANSWER}<br /><a class="postlink" href="#Top">{L_BACK_TO_TOP}</a></span></td>
</tr>
<tr>
! <td class="spaceRow" height="1"><img src="templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
<!-- END faq_row -->
***************
*** 44,49 ****
<table width="100%" cellspacing="2" border="0" align="center">
! <tr>
! <td align="right" valign="middle" nowrap><span class="gensmall">{S_TIMEZONE}</span><br /><br />{JUMPBOX}</td>
! </tr>
</table>
--- 47,52 ----
<table width="100%" cellspacing="2" border="0" align="center">
! <tr>
! <td align="right" valign="middle" nowrap="nowrap"><span class="gensmall">{S_TIMEZONE}</span><br /><br />{JUMPBOX}</td>
! </tr>
</table>
Index: groupcp_info_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/groupcp_info_body.tpl,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** groupcp_info_body.tpl 26 Feb 2002 12:24:55 -0000 1.9
--- groupcp_info_body.tpl 31 Mar 2002 00:06:34 -0000 1.10
***************
*** 1,44 ****
! <form method="post" action="{S_GROUPCP_ACTION}">
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
! </tr>
</table>
! <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
<tr>
! <th colspan="7" class="thHead" height="25"><span class="tableTitle">{L_GROUP_INFORMATION}</span></th>
</tr>
<tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_NAME}:</span></td>
! <td class="row2"><span class="gen"><b>{GROUP_NAME}</b></span></td>
</tr>
<tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_DESC}:</span></td>
! <td class="row2"><span class="gen">{GROUP_DESC}</span></td>
</tr>
<tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_MEMBERSHIP}:</span></td>
! <td class="row2"><span class="gen">{GROUP_DETAILS}
! <!-- BEGIN switch_subscribe_group_input -->
! <input class="mainoption" type="submit" name="joingroup" value="{L_JOIN_GROUP}" />
! <!-- END switch_subscribe_group_input -->
! <!-- BEGIN switch_unsubscribe_group_input -->
! <input class="mainoption" type="submit" name="unsub" value="{L_UNSUBSCRIBE_GROUP}" />
! <!-- END switch_unsubscribe_group_input -->
! </span></td>
</tr>
<!-- BEGIN switch_mod_option -->
<tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_TYPE}:</span></td>
! <td class="row2"><span class="gen"><span class="gen"><input type="radio" name="group_type" value="{S_GROUP_OPEN_TYPE}" {S_GROUP_OPEN_CHECKED} /> {L_GROUP_OPEN} <input type="radio" name="group_type" value="{S_GROUP_CLOSED_TYPE}" {S_GROUP_CLOSED_CHECKED} /> {L_GROUP_CLOSED} <input type="radio" name="group_type" value="{S_GROUP_HIDDEN_TYPE}" {S_GROUP_HIDDEN_CHECKED} /> {L_GROUP_HIDDEN} <input class="mainoption" type="submit" name="groupstatus" value="{L_UPDATE}" /></span></td>
</tr>
<!-- END switch_mod_option -->
! </table>
{S_HIDDEN_FIELDS}
</form>
! <form method="post" action="{S_GROUPCP_ACTION}" name="post">
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
<tr>
--- 1,47 ----
! <form action="{S_GROUPCP_ACTION}" method="post">
!
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left" class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></td>
! </tr>
</table>
! <table class="forumline" width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
! <th class="thHead" colspan="7" height="25"><span class="tableTitle">{L_GROUP_INFORMATION}</span></th>
</tr>
<tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_NAME}:</span></td>
! <td class="row2"><span class="gen"><b>{GROUP_NAME}</b></span></td>
</tr>
<tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_DESC}:</span></td>
! <td class="row2"><span class="gen">{GROUP_DESC}</span></td>
</tr>
<tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_MEMBERSHIP}:</span></td>
! <td class="row2"><span class="gen">{GROUP_DETAILS}
! <!-- BEGIN switch_subscribe_group_input -->
! <input class="mainoption" type="submit" name="joingroup" value="{L_JOIN_GROUP}" />
! <!-- END switch_subscribe_group_input -->
! <!-- BEGIN switch_unsubscribe_group_input -->
! <input class="mainoption" type="submit" name="unsub" value="{L_UNSUBSCRIBE_GROUP}" />
! <!-- END switch_unsubscribe_group_input -->
! </span></td>
</tr>
<!-- BEGIN switch_mod_option -->
<tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_TYPE}:</span></td>
! <td class="row2"><span class="gen"><span class="gen"><input type="radio" name="group_type" value="{S_GROUP_OPEN_TYPE}" {S_GROUP_OPEN_CHECKED} /> {L_GROUP_OPEN} <input type="radio" name="group_type" value="{S_GROUP_CLOSED_TYPE}" {S_GROUP_CLOSED_CHECKED} /> {L_GROUP_CLOSED} <input type="radio" name="group_type" value="{S_GROUP_HIDDEN_TYPE}" {S_GROUP_HIDDEN_CHECKED} /> {L_GROUP_HIDDEN} <input class="mainoption" type="submit" name="groupstatus" value="{L_UPDATE}" /></span></td>
</tr>
<!-- END switch_mod_option -->
! </table>
!
{S_HIDDEN_FIELDS}
+
</form>
! <form action="{S_GROUPCP_ACTION}" method="post" name="post">
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
<tr>
***************
*** 51,59 ****
<th class="thCornerR">{L_SELECT}</th>
</tr>
-
<tr>
<td class="catSides" colspan="8" height="28"><span class="cattitle">{L_GROUP_MODERATOR}</span></td>
</tr>
-
<tr>
<td class="row1" align="center"> {MOD_PM_IMG} </td>
--- 54,60 ----
***************
*** 65,73 ****
<td class="row1" align="center"> </td>
</tr>
-
<tr>
<td class="catSides" colspan="8" height="28"><span class="cattitle">{L_GROUP_MEMBERS}</span></td>
</tr>
-
<!-- BEGIN member_row -->
<tr>
--- 66,72 ----
Index: groupcp_user_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/groupcp_user_body.tpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** groupcp_user_body.tpl 16 Dec 2001 02:06:14 -0000 1.5
--- groupcp_user_body.tpl 31 Mar 2002 00:06:34 -0000 1.6
***************
*** 7,15 ****
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
! <!-- BEGIN groups_joined -->
<tr>
<th colspan="2" align="center" class="thHead" height="25">{L_GROUP_MEMBERSHIP_DETAILS}</th>
</tr>
! <!-- BEGIN groups_member -->
<tr>
<td class="row1"><span class="gen">{L_YOU_BELONG_GROUPS}</span></td>
--- 7,15 ----
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
! <!-- BEGIN switch_groups_joined -->
<tr>
<th colspan="2" align="center" class="thHead" height="25">{L_GROUP_MEMBERSHIP_DETAILS}</th>
</tr>
! <!-- BEGIN switch_groups_member -->
<tr>
<td class="row1"><span class="gen">{L_YOU_BELONG_GROUPS}</span></td>
***************
*** 25,30 ****
</td>
</tr>
! <!-- END groups_member -->
! <!-- BEGIN groups_pending -->
<tr>
<td class="row1"><span class="gen">{L_PENDING_GROUPS}</span></td>
--- 25,30 ----
</td>
</tr>
! <!-- END switch_groups_member -->
! <!-- BEGIN switch_groups_pending -->
<tr>
<td class="row1"><span class="gen">{L_PENDING_GROUPS}</span></td>
***************
*** 40,46 ****
</td>
</tr>
! <!-- END groups_pending -->
! <!-- END groups_joined -->
! <!-- BEGIN groups_remaining -->
<tr>
<th colspan="2" align="center" class="thHead" height="25">{L_JOIN_A_GROUP}</th>
--- 40,46 ----
</td>
</tr>
! <!-- END switch_groups_pending -->
! <!-- END switch_groups_joined -->
! <!-- BEGIN switch_groups_remaining -->
<tr>
<th colspan="2" align="center" class="thHead" height="25">{L_JOIN_A_GROUP}</th>
***************
*** 59,63 ****
</td>
</tr>
! <!-- END groups_remaining -->
</table>
--- 59,63 ----
</td>
</tr>
! <!-- END switch_groups_remaining -->
</table>
Index: index_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/index_body.tpl,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** index_body.tpl 28 Feb 2002 14:08:01 -0000 1.20
--- index_body.tpl 31 Mar 2002 00:06:34 -0000 1.21
***************
*** 28,32 ****
<!-- BEGIN forumrow -->
<tr>
! <td class="row1" align="center" valign="middle" height="50">{catrow.forumrow.FOLDER}</td>
<td class="row1" width="100%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
</span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
--- 28,32 ----
<!-- BEGIN forumrow -->
<tr>
! <td class="row1" align="center" valign="middle" height="50"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
<td class="row1" width="100%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
</span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
***************
*** 57,61 ****
</tr>
<tr>
! <td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE} [ {L_WHOSONLINE_ADMIN} ] [ {L_WHOSONLINE_MOD} ]<br />{L_RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table>
--- 57,61 ----
</tr>
<tr>
! <td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE} [ {L_WHOSONLINE_ADMIN} ] [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table>
Index: jumpbox.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/jumpbox.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** jumpbox.tpl 10 Mar 2002 03:23:56 -0000 1.4
--- jumpbox.tpl 31 Mar 2002 00:06:34 -0000 1.5
***************
*** 1,10 ****
! <form method="GET" name="jumpbox" action="{S_JUMPBOX_ACTION}" onSubmit="if(document.jumpbox.f.value == -1){return false;}">
! <table cellspacing="0" cellpadding="0" border="0">
<tr>
! <td nowrap="nowrap"><span class="gensmall">{L_JUMP_TO}: {S_JUMPBOX_LIST}
! <input type="submit" value="{L_GO}" class="liteoption" />
! </span></td>
</tr>
! </table>
! </form>
--- 1,6 ----
! <form method="get" name="jumpbox" action="{S_JUMPBOX_ACTION}" onSubmit="if(document.jumpbox.f.value == -1){return false;}"><table cellspacing="0" cellpadding="0" border="0">
<tr>
! <td nowrap="nowrap"><span class="gensmall">{L_JUMP_TO}: {S_JUMPBOX_SELECT} <input type="submit" value="{L_GO}" class="liteoption" /></span></td>
</tr>
! </table></form>
Index: memberlist_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/memberlist_body.tpl,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** memberlist_body.tpl 28 Feb 2002 14:08:01 -0000 1.7
--- memberlist_body.tpl 31 Mar 2002 00:06:34 -0000 1.8
***************
*** 45,49 ****
<tr>
<td><span class="nav">{PAGE_NUMBER}</span></td>
! <td align="right"><span class="gensmall">{S_TIMEZONE}</span><br /><span class="nav">{PAGINATION} </span></td>
</tr>
</table></form>
--- 45,49 ----
<tr>
<td><span class="nav">{PAGE_NUMBER}</span></td>
! <td align="right"><span class="gensmall">{S_TIMEZONE}</span><br /><span class="nav">{PAGINATION}</span></td>
</tr>
</table></form>
Index: message_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/message_body.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** message_body.tpl 18 Nov 2001 14:01:35 -0000 1.3
--- message_body.tpl 31 Mar 2002 00:06:34 -0000 1.4
***************
*** 1,27 ****
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left" class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></td>
! </tr>
</table>
! <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
! <tr>
! <th height="25" class="thHead"><b>{MESSAGE_TITLE}</b></th>
! </tr>
! <tr>
! <td class="row1">
! <table width="100%" border="0" cellspacing="0" cellpadding="1">
! <tr>
! <td> </td>
! </tr>
! <tr>
! <td align="center"><span class="gen">{MESSAGE_TEXT}</span></td>
! </tr>
! <tr>
! <td> </td>
! </tr>
! </table>
! </td>
! </tr>
</table>
! <br />
\ No newline at end of file
--- 1,27 ----
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left" class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></td>
! </tr>
</table>
!
! <table class="forumline" width="100%" cellspacing="1" cellpadding="4" border="0">
! <tr>
! <th class="thHead" height="25"><b>{MESSAGE_TITLE}</b></th>
! </tr>
! <tr>
! <td class="row1"><table width="100%" cellspacing="0" cellpadding="1" border="0">
! <tr>
! <td> </td>
! </tr>
! <tr>
! <td align="center"><span class="gen">{MESSAGE_TEXT}</span></td>
! </tr>
! <tr>
! <td> </td>
! </tr>
! </table></td>
! </tr>
</table>
!
! <br clear="all" />
Index: modcp_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/modcp_body.tpl,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** modcp_body.tpl 28 Feb 2002 14:08:01 -0000 1.8
--- modcp_body.tpl 31 Mar 2002 00:06:34 -0000 1.9
***************
*** 24,31 ****
<!-- BEGIN topicrow -->
<tr>
! <td class="row1" align="center" valign="middle">{topicrow.FOLDER_IMG}</td>
<td class="row1"> <span class="topictitle">{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a></span></td>
<td class="row2" align="center" valign="middle"><span class="postdetails">{topicrow.REPLIES}</span></td>
! <td class="row1" align="center" valign="middle"><span class="postdetails">{topicrow.LAST_POST}</span></td>
<td class="row2" align="center" valign="middle">
<input type="checkbox" name="topic_id_list[]" value="{topicrow.TOPIC_ID}" />
--- 24,31 ----
<!-- BEGIN topicrow -->
<tr>
! <td class="row1" align="center" valign="middle"><img src="{topicrow.TOPIC_FOLDER_IMG}" width="19" height="18" alt="{topicrow.L_TOPIC_FOLDER_ALT}" title="{topicrow.L_TOPIC_FOLDER_ALT}" /></td>
<td class="row1"> <span class="topictitle">{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a></span></td>
<td class="row2" align="center" valign="middle"><span class="postdetails">{topicrow.REPLIES}</span></td>
! <td class="row1" align="center" valign="middle"><span class="postdetails">{topicrow.LAST_POST_TIME}</span></td>
<td class="row2" align="center" valign="middle">
<input type="checkbox" name="topic_id_list[]" value="{topicrow.TOPIC_ID}" />
Index: modcp_move.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/modcp_move.tpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** modcp_move.tpl 18 Nov 2001 14:02:25 -0000 1.5
--- modcp_move.tpl 31 Mar 2002 00:06:34 -0000 1.6
***************
*** 17,21 ****
</tr>
<tr>
! <td align="center"><span class="gen">{L_MOVE_TO_FORUM} {S_FORUM_BOX}<br /><br />
<input type="checkbox" name="move_leave_shadow" checked="checked" />{L_LEAVESHADOW}<br />
<br />
--- 17,21 ----
</tr>
<tr>
! <td align="center"><span class="gen">{L_MOVE_TO_FORUM} {S_FORUM_SELECT}<br /><br />
<input type="checkbox" name="move_leave_shadow" checked="checked" />{L_LEAVESHADOW}<br />
<br />
Index: modcp_split.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/modcp_split.tpl,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** modcp_split.tpl 18 Mar 2002 18:05:53 -0000 1.7
--- modcp_split.tpl 31 Mar 2002 00:06:34 -0000 1.8
***************
*** 49,53 ****
<table width="100%" cellspacing="0" cellpadding="3" border="0">
<tr>
! <td valign="middle"><img src="templates/subSilver/images/icon_minipost.gif" alt="Post image icon"><span class="postdetails">{L_POSTED}:
{postrow.POST_DATE} {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
</tr>
--- 49,53 ----
<table width="100%" cellspacing="0" cellpadding="3" border="0">
<tr>
! <td valign="middle"><img src="templates/subSilver/images/icon_minipost.gif" alt="{L_POST}"><span class="postdetails">{L_POSTED}:
{postrow.POST_DATE} {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
</tr>
***************
*** 59,63 ****
</table>
</td>
! <td width="5%" align="center" class="{postrow.ROW_CLASS}">{postrow.SPLIT_CHECKBOX}</td>
</tr>
<tr>
--- 59,63 ----
</table>
</td>
! <td width="5%" align="center" class="{postrow.ROW_CLASS}">{postrow.S_SPLIT_CHECKBOX}</td>
</tr>
<tr>
Index: modcp_viewip.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/modcp_viewip.tpl,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** modcp_viewip.tpl 2 Mar 2002 23:44:32 -0000 1.8
--- modcp_viewip.tpl 31 Mar 2002 00:06:34 -0000 1.9
***************
*** 17,21 ****
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td> <span class="gen">{IP} ({POSTINGS})</span></td>
<td align="right"><span class="gen">[ <a href="{U_LOOKUP_IP}">{L_LOOKUP_IP}</a>
] </span></td>
--- 17,21 ----
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td> <span class="gen">{IP} [ {POSTS} ]</span></td>
<td align="right"><span class="gen">[ <a href="{U_LOOKUP_IP}">{L_LOOKUP_IP}</a>
] </span></td>
***************
*** 32,36 ****
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td> <span class="gen"><a href="{userrow.U_PROFILE}">{userrow.USERNAME}</a> ({userrow.POSTINGS})</span></td>
<td align="right"><a href="{userrow.U_SEARCHPOSTS}" title="{userrow.L_SEARCH_POSTS}"><img src="{SEARCH_IMG}" border="0" alt="{L_SEARCH}" /></a>
</td>
--- 32,36 ----
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td> <span class="gen"><a href="{userrow.U_PROFILE}">{userrow.USERNAME}</a> [ {userrow.POSTS} ]</span></td>
<td align="right"><a href="{userrow.U_SEARCHPOSTS}" title="{userrow.L_SEARCH_POSTS}"><img src="{SEARCH_IMG}" border="0" alt="{L_SEARCH}" /></a>
</td>
***************
*** 47,51 ****
<td class="{iprow.ROW_CLASS}"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td> <span class="gen">{iprow.IP} ({iprow.POSTINGS})</span></td>
<td align="right"><span class="gen">[ <a href="{iprow.U_LOOKUP_IP}">{L_LOOKUP_IP}</a>
] </span></td>
--- 47,51 ----
<td class="{iprow.ROW_CLASS}"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td> <span class="gen">{iprow.IP} [ {iprow.POSTS} ]</span></td>
<td align="right"><span class="gen">[ <a href="{iprow.U_LOOKUP_IP}">{L_LOOKUP_IP}</a>
] </span></td>
Index: overall_footer.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/overall_footer.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** overall_footer.tpl 16 Jan 2002 17:59:11 -0000 1.3
--- overall_footer.tpl 31 Mar 2002 00:06:34 -0000 1.4
***************
*** 1,26 ****
! <div align="center"> <span class="copyright"><br />{ADMIN_LINK}<br />
! <!--
!
! Please note that the following copyright notice
! MUST be displayed on each and every page output
! by phpBB. You may alter the font, colour etc. but
! you CANNOT remove it, nor change it so that it be,
! to all intents and purposes, invisible. You may ADD
! your own notice to it should you have altered the
! code but you may not replace it. The hyperlink must
! also remain intact. These conditions are part of the
! licence this software is released under. See the
! LICENCE and README files for more information.
!
! The phpBB Group : 2001
// -->
! Powered by phpBB {PHPBB_VERSION} © 2001 <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB
! Group</a><br />{TRANSLATION_INFO}</span></div>
! </td>
! </tr>
</table>
!
</body>
! </html>
--- 1,19 ----
! <div align="center"><span class="copyright"><br />{ADMIN_LINK}<br />
! <!--
! We request you retain the full copyright notice below including the link to www.phpbb.com.
! This not only gives respect to the large amount of time given freely by the developers
! but also helps build interest, traffic and use of phpBB 2.0. If you cannot (for good
! reason) retain the full copyright we request you at least leave in place the
! Powered by phpBB {PHPBB_VERSION} line, with phpBB linked to www.phpbb.com. If you refuse
! to include even this then support on our forums may be affected.
+ The phpBB Group : 2002
// -->
! Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} © 2001 phpBB Group<br />{TRANSLATION_INFO}</span></div>
! </td>
! </tr>
</table>
!
</body>
! </html>
\ No newline at end of file
Index: overall_header.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/overall_header.tpl,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -r1.25 -r1.26
*** overall_header.tpl 22 Mar 2002 18:07:09 -0000 1.25
--- overall_header.tpl 31 Mar 2002 00:06:34 -0000 1.26
***************
*** 1,4 ****
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <!-- DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" -->
<html dir="{S_CONTENT_DIRECTION}">
<head>
--- 1,3 ----
***************
*** 11,15 ****
<style type="text/css">
<!--
-
/*
The original subSilver Theme for phpBB version 2+
--- 10,13 ----
***************
*** 21,27 ****
and place it in an external file, deleting this section to save bandwidth.
*/
!
!
! /* General page style. The scroll bar colours only visible in IE5.5+ */
body {
background-color: {T_BODY_BGCOLOR};
--- 19,24 ----
and place it in an external file, deleting this section to save bandwidth.
*/
!
! /* General page style. The scroll bar colours only visible in IE5.5+ */
body {
background-color: {T_BODY_BGCOLOR};
***************
*** 41,45 ****
hr { height: 0px; border: solid {T_TR_COLOR3} 0px; border-top-width: 1px;}
-
/* This is the border line & background colour round the entire page */
.bodyline { background-color: {T_TD_COLOR2}; border: 1px {T_TH_COLOR1} solid; }
--- 38,41 ----
***************
*** 48,52 ****
.forumline { background-color: {T_TD_COLOR2}; border: 2px {T_TH_COLOR2} solid; }
-
/* Main table cell colours and backgrounds */
td.row1 { background-color: {T_TR_COLOR1}; }
--- 44,47 ----
***************
*** 54,58 ****
td.row3 { background-color: {T_TR_COLOR3}; }
-
/*
This is for the table cell above the Topics, Post & Last posts on the index.php page
--- 49,52 ----
***************
*** 78,82 ****
}
-
/*
Setting additional nice inner borders for the main table cells.
--- 72,75 ----
***************
*** 89,95 ****
}
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
! font-weight: bold; border: {T_TD_COLOR2}; border-style: solid; height: 28px; }
td.row3Right,td.spaceRow {
! background-color: {T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid; }
th.thHead,td.catHead { font-size: {T_FONTSIZE3}px; border-width: 1px 1px 0px 1px; }
--- 82,90 ----
}
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
! font-weight: bold; border: {T_TD_COLOR2}; border-style: solid; height: 28px;
! }
td.row3Right,td.spaceRow {
! background-color: {T_TR_COLOR3}; border: {T_TH_COLOR3}; border-style: solid;
! }
th.thHead,td.catHead { font-size: {T_FONTSIZE3}px; border-width: 1px 1px 0px 1px; }
***************
*** 102,113 ****
th.thCornerR { border-width: 1px 1px 0px 0px; }
-
/* The largest text used in the index page title and toptic title etc. */
.maintitle {
! font-weight: bold; font-size: 22px; font-family: "{T_FONTFACE2}",{T_FONTFACE1};
! text-decoration: none; line-height : 120%; color : {T_BODY_TEXT};
}
-
/* General text */
.gen { font-size : {T_FONTSIZE3}px; }
--- 97,106 ----
th.thCornerR { border-width: 1px 1px 0px 0px; }
/* The largest text used in the index page title and toptic title etc. */
.maintitle {
! font-weight: bold; font-size: 22px; font-family: "{T_FONTFACE2}",{T_FONTFACE1};
! text-decoration: none; line-height : 120%; color : {T_BODY_TEXT};
}
/* General text */
.gen { font-size : {T_FONTSIZE3}px; }
***************
*** 118,122 ****
a.gen:hover,a.genmed:hover,a.gensmall:hover { color: {T_BODY_HLINK}; text-decoration: underline; }
-
/* The register, login, search etc links at the top of the page */
.mainmenu { font-size : {T_FONTSIZE2}px; color : {T_BODY_TEXT} }
--- 111,114 ----
***************
*** 124,128 ****
a.mainmenu:hover{ text-decoration: underline; color : {T_BODY_HLINK}; }
-
/* Forum category titles */
.cattitle { font-weight: bold; font-size: {T_FONTSIZE3}px ; letter-spacing: 1px; color : {T_BODY_LINK}}
--- 116,119 ----
***************
*** 130,134 ****
a.cattitle:hover{ text-decoration: underline; }
-
/* Forum title: Text and link to the forums used in: index.php */
.forumlink { font-weight: bold; font-size: {T_FONTSIZE3}px; color : {T_BODY_LINK}; }
--- 121,124 ----
***************
*** 136,140 ****
a.forumlink:hover{ text-decoration: underline; color : {T_BODY_HLINK}; }
-
/* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
.nav { font-weight: bold; font-size: {T_FONTSIZE2}px; color : {T_BODY_TEXT};}
--- 126,129 ----
***************
*** 142,146 ****
a.nav:hover { text-decoration: underline; }
-
/* titles for the topics: could specify viewed link colour too */
.topictitle,h1,h2 { font-weight: bold; font-size: {T_FONTSIZE2}px; color : {T_BODY_TEXT}; }
--- 131,134 ----
***************
*** 149,153 ****
a.topictitle:hover { text-decoration: underline; color : {T_BODY_HLINK}; }
-
/* Name of poster in viewmsg.php and viewtopic.php and other places */
.name { font-size : {T_FONTSIZE2}px; color : {T_BODY_TEXT};}
--- 137,140 ----
***************
*** 156,160 ****
.postdetails { font-size : {T_FONTSIZE1}px; color : {T_BODY_TEXT}; }
-
/* The content of the posts (body of text) */
.postbody { font-size : {T_FONTSIZE3}px; line-height: 18px}
--- 143,146 ----
***************
*** 163,167 ****
a.postlink:hover { text-decoration: underline; color : {T_BODY_HLINK}}
-
/* Quote & Code blocks */
.code {
--- 149,152 ----
***************
*** 177,181 ****
}
-
/* Copyright and bottom info */
.copyright { font-size: {T_FONTSIZE1}px; font-family: {T_FONTFACE1}; color: {T_FONTCOLOR1}; letter-spacing: -1px;}
--- 162,165 ----
***************
*** 183,187 ****
a.copyright:hover { color: {T_BODY_TEXT}; text-decoration: underline;}
-
/* Form elements */
input,textarea, select {
--- 167,170 ----
***************
*** 223,238 ****
.helpline { background-color: {T_TR_COLOR2}; border-style: none; }
-
/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
@import url("templates/subSilver/formIE.css");
-->
</style>
-
<!-- BEGIN switch_enable_pm_popup -->
<script language="Javascript" type="text/javascript">
<!--
! var new_pm_flag = {PRIVATE_MESSAGE_NEW_FLAG};
!
! if( new_pm_flag )
{
window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
--- 206,217 ----
.helpline { background-color: {T_TR_COLOR2}; border-style: none; }
/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
@import url("templates/subSilver/formIE.css");
-->
</style>
<!-- BEGIN switch_enable_pm_popup -->
<script language="Javascript" type="text/javascript">
<!--
! if ( {PRIVATE_MESSAGE_NEW_FLAG} )
{
window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
***************
*** 242,271 ****
<!-- END switch_enable_pm_popup -->
</head>
-
<body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
! <span class="gen"><a name="top"></a></span><table width="100%" border="0" cellspacing="0" cellpadding="10" align="center">
! <tr>
! <td class="bodyline">
! <table width="100%" border="0" cellspacing="0" cellpadding="0">
! <tr>
!
!
! <td> <a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a>
! </td>
!
!
! <td align="center" width="100%" valign="middle"><span class="maintitle">{SITENAME}</span><br />
! <span class="gen">{SITE_DESCRIPTION}<br /> </span>
!
! <table cellspacing="0" cellpadding="2" border="0">
! <tr>
! <td valign="top" nowrap="nowrap" align="center"><span class="mainmenu"> <a href="{U_FAQ}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a></span><span class="mainmenu"> <a href="{U_SEARCH}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_search.gif" width="12" height="13" border="0" alt="{L_SEARCH}" hspace="3" />{L_SEARCH}</a> <a href="{U_MEMBERLIST}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_MEMBERLIST}" hspace="3" />{L_MEMBERLIST}</a> <a href="{U_GROUP_CP}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a> <a href="{U_REGISTER}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_register.gif" width="12" height="13" border="0" alt="{L_REGISTER}" hspace="3" />{L_REGISTER}</a></span></td>
! </tr>
<tr>
! <td nowrap="nowrap" valign="top" height="25" align="center"><span class="mainmenu"> <a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a> <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a></span></td>
! </tr>
! </table>
! </td>
</tr>
! </table>
! <span class="mainmenu"> <br /> </span>
--- 221,248 ----
<!-- END switch_enable_pm_popup -->
</head>
<body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
!
! <a name="top"></a>
!
! <table width="100%" cellspacing="0" cellpadding="10" border="0" align="center">
! <tr>
! <td class="bodyline"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
! <td align="center" width="100%" valign="middle"><span class="maintitle">{SITENAME}</span><br /><span class="gen">{SITE_DESCRIPTION}<br /> </span>
! <table cellspacing="0" cellpadding="2" border="0">
! <tr>
! <td align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="{U_FAQ}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a></span><span class="mainmenu"> <a href="{U_SEARCH}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_search.gif" width="12" height="13" border="0" alt="{L_SEARCH}" hspace="3" />{L_SEARCH}</a> <a href="{U_MEMBERLIST}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_MEMBERLIST}" hspace="3" />{L_MEMBERLIST}</a> <a href="{U_GROUP_CP}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a>
! <!-- BEGIN switch_user_logged_out -->
! <a href="{U_REGISTER}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_register.gif" width="12" height="13" border="0" alt="{L_REGISTER}" hspace="3" />{L_REGISTER}</a></span>
! <!-- END switch_user_logged_out -->
! </td>
! </tr>
! <tr>
! <td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a> <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a> </span></td>
! </tr>
! </table></td>
</tr>
! </table>
!
! <br />
Index: posting_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/posting_body.tpl,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -r1.25 -r1.26
*** posting_body.tpl 18 Feb 2002 12:49:08 -0000 1.25
--- posting_body.tpl 31 Mar 2002 00:06:34 -0000 1.26
***************
*** 237,261 ****
</table>
! <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
<tr>
! <th class="thHead" colspan="2" height="25"><b>{L_POST_A}</b></th>
</tr>
! <!-- BEGIN username_select -->
! <tr>
! <td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><span class="genmed"><input type="text" class="post" tabindex="1" name="username" size="25" maxlength="25" value="{USERNAME}" /></span></td>
! </tr>
! <!-- END username_select -->
! <!-- This is for private messaging -->
! <!-- BEGIN privmsg_extensions -->
! <tr>
! <td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><span class="genmed">
! <input type="text" class="post" name="username" maxlength="25" size="25" tabindex="1" value="{USERNAME}" />
!
! <input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption" onClick="window.open('{U_SEARCH_USER}', '_phpbbsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" />
! </span></td>
</tr>
! <!-- END privmsg_extensions -->
<tr>
<td class="row1" width="22%"><span class="gen"><b>{L_SUBJECT}</b></span></td>
--- 237,256 ----
</table>
! <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
<tr>
! <th class="thHead" colspan="2" height="25"><b>{L_POST_A}</b></th>
</tr>
! <!-- BEGIN switch_username_select -->
! <tr>
! <td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><span class="genmed"><input type="text" class="post" tabindex="1" name="username" size="25" maxlength="25" value="{USERNAME}" /></span></td>
! </tr>
! <!-- END switch_username_select -->
! <!-- BEGIN switch_privmsg -->
! <tr>
! <td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><span class="genmed"><input type="text" class="post" name="username" maxlength="25" size="25" tabindex="1" value="{USERNAME}" /> <input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption" onClick="window.open('{U_SEARCH_USER}', '_phpbbsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" /></span></td>
</tr>
! <!-- END switch_privmsg -->
<tr>
<td class="row1" width="22%"><span class="gen"><b>{L_SUBJECT}</b></span></td>
***************
*** 375,379 ****
<td class="row2"><span class="gen"> </span>
<table cellspacing="0" cellpadding="1" border="0">
! <!-- BEGIN html_checkbox -->
<tr>
<td>
--- 370,374 ----
<td class="row2"><span class="gen"> </span>
<table cellspacing="0" cellpadding="1" border="0">
! <!-- BEGIN switch_html_checkbox -->
<tr>
<td>
***************
*** 382,387 ****
<td><span class="gen">{L_DISABLE_HTML}</span></td>
</tr>
! <!-- END html_checkbox -->
! <!-- BEGIN bbcode_checkbox -->
<tr>
<td>
--- 377,382 ----
<td><span class="gen">{L_DISABLE_HTML}</span></td>
</tr>
! <!-- END switch_html_checkbox -->
! <!-- BEGIN switch_bbcode_checkbox -->
<tr>
<td>
***************
*** 390,395 ****
<td><span class="gen">{L_DISABLE_BBCODE}</span></td>
</tr>
! <!-- END bbcode_checkbox -->
! <!-- BEGIN smilies_checkbox -->
<tr>
<td>
--- 385,390 ----
<td><span class="gen">{L_DISABLE_BBCODE}</span></td>
</tr>
! <!-- END switch_bbcode_checkbox -->
! <!-- BEGIN switch_smilies_checkbox -->
<tr>
<td>
***************
*** 398,403 ****
<td><span class="gen">{L_DISABLE_SMILIES}</span></td>
</tr>
! <!-- END smilies_checkbox -->
! <!-- BEGIN signature_checkbox -->
<tr>
<td>
--- 393,398 ----
<td><span class="gen">{L_DISABLE_SMILIES}</span></td>
</tr>
! <!-- END switch_smilies_checkbox -->
! <!-- BEGIN switch_signature_checkbox -->
<tr>
<td>
***************
*** 406,411 ****
<td><span class="gen">{L_ATTACH_SIGNATURE}</span></td>
</tr>
! <!-- END signature_checkbox -->
! <!-- BEGIN notify_checkbox -->
<tr>
<td>
--- 401,406 ----
<td><span class="gen">{L_ATTACH_SIGNATURE}</span></td>
</tr>
! <!-- END switch_signature_checkbox -->
! <!-- BEGIN switch_notify_checkbox -->
<tr>
<td>
***************
*** 414,419 ****
<td><span class="gen">{L_NOTIFY_ON_REPLY}</span></td>
</tr>
! <!-- END notify_checkbox -->
! <!-- BEGIN delete_checkbox -->
<tr>
<td>
--- 409,414 ----
<td><span class="gen">{L_NOTIFY_ON_REPLY}</span></td>
</tr>
! <!-- END switch_notify_checkbox -->
! <!-- BEGIN switch_delete_checkbox -->
<tr>
<td>
***************
*** 422,432 ****
<td><span class="gen">{L_DELETE_POST}</span></td>
</tr>
! <!-- END delete_checkbox -->
! <!-- BEGIN type_toggle -->
<tr>
<td></td>
<td><span class="gen">{S_TYPE_TOGGLE}</span></td>
</tr>
! <!-- END type_toggle -->
</table>
</td>
--- 417,427 ----
<td><span class="gen">{L_DELETE_POST}</span></td>
</tr>
! <!-- END switch_delete_checkbox -->
! <!-- BEGIN switch_type_toggle -->
<tr>
<td></td>
<td><span class="gen">{S_TYPE_TOGGLE}</span></td>
</tr>
! <!-- END switch_type_toggle -->
</table>
</td>
Index: posting_poll_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/posting_poll_body.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** posting_poll_body.tpl 18 Feb 2002 12:49:08 -0000 1.3
--- posting_poll_body.tpl 31 Mar 2002 00:06:34 -0000 1.4
***************
*** 24,31 ****
<td class="row2"><span class="genmed"><input type="text" name="poll_length" size="3" maxlength="3" class="post" value="{POLL_LENGTH}" /></span> <span class="gen"><b>{L_DAYS}</b></span> <span class="gensmall">{L_POLL_LENGTH_EXPLAIN}</span></td>
</tr>
! <!-- BEGIN poll_delete_toggle -->
<tr>
<td class="row1"><span class="gen"><b>{L_POLL_DELETE}</b></span></td>
<td class="row2"><input type="checkbox" name="poll_delete" /></td>
</tr>
! <!-- END poll_delete_toggle -->
--- 24,31 ----
<td class="row2"><span class="genmed"><input type="text" name="poll_length" size="3" maxlength="3" class="post" value="{POLL_LENGTH}" /></span> <span class="gen"><b>{L_DAYS}</b></span> <span class="gensmall">{L_POLL_LENGTH_EXPLAIN}</span></td>
</tr>
! <!-- BEGIN switch_poll_delete_toggle -->
<tr>
<td class="row1"><span class="gen"><b>{L_POLL_DELETE}</b></span></td>
<td class="row2"><input type="checkbox" name="poll_delete" /></td>
</tr>
! <!-- END switch_poll_delete_toggle -->
Index: posting_preview.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/posting_preview.tpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** posting_preview.tpl 17 Feb 2002 15:27:11 -0000 1.5
--- posting_preview.tpl 31 Mar 2002 00:06:34 -0000 1.6
***************
*** 1,24 ****
! <table border="0" cellpadding="4" cellspacing="1" width="100%" class="forumline">
! <tr>
! <th height="25" class="thHead">{L_PREVIEW}</th>
! </tr>
! <tr>
! <td class="row1"><img src="templates/subSilver/images/icon_minipost.gif" alt="Post image icon" /><span class="postdetails">{L_POSTED}: {POST_DATE} {L_POST_SUBJECT}: {POST_SUBJECT}</span></td>
! </tr>
! <tr>
! <td class="row1">
! <table width="100%" border="0" cellspacing="0" cellpadding="0">
! <tr>
! <td>
! <span class="postbody">{MESSAGE}</span>
! </td>
! </tr>
! </table>
! </td>
! </tr>
! <tr>
! <td class="spaceRow" height="1"><img src="templates/subSilver/images/spacer.gif" width="1" height="1"></td>
! </tr>
</table>
! <br />
--- 1,23 ----
! <table class="forumline" width="100%" cellspacing="1" cellpadding="4" border="0">
! <tr>
! <th height="25" class="thHead">{L_PREVIEW}</th>
! </tr>
! <tr>
! <td class="row1"><img src="templates/subSilver/images/icon_minipost.gif" alt="{L_POST}" /><span class="postdetails">{L_POSTED}: {POST_DATE} {L_POST_SUBJECT}: {POST_SUBJECT}</span></td>
! </tr>
! <tr>
! <td class="row1"><table width="100%" border="0" cellspacing="0" cellpadding="0">
! <tr>
! <td>
! <span class="postbody">{MESSAGE}</span>
! </td>
! </tr>
! </table></td>
! </tr>
! <tr>
! <td class="spaceRow" height="1"><img src="templates/subSilver/images/spacer.gif" width="1" height="1" /></td>
! </tr>
</table>
!
! <br clear="all" />
Index: posting_topic_review.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/posting_topic_review.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** posting_topic_review.tpl 21 Oct 2001 01:53:48 -0000 1.3
--- posting_topic_review.tpl 31 Mar 2002 00:06:34 -0000 1.4
***************
*** 3,15 ****
<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
<tr>
!
! <td class="catHead" height="28" align="center"><b><span class="cattitle">{L_TOPIC_REVIEW}</span></b></td>
</tr>
<tr>
<td class="row1"><iframe width="100%" height="300" src="{U_REVIEW_TOPIC}" >
<!-- END switch_inline_mode -->
!
! <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline" style="border: 0px #006699 solid ">
! <tr>
<th class="thCornerL" width="22%" height="26">{L_AUTHOR}</th>
<th class="thCornerR">{L_MESSAGE}</th>
--- 3,13 ----
<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
<tr>
! <td class="catHead" height="28" align="center"><b><span class="cattitle">{L_TOPIC_REVIEW}</span></b></td>
</tr>
<tr>
<td class="row1"><iframe width="100%" height="300" src="{U_REVIEW_TOPIC}" >
<!-- END switch_inline_mode -->
! <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline" style="border: 0px #006699 solid ">
! <tr>
<th class="thCornerL" width="22%" height="26">{L_AUTHOR}</th>
<th class="thCornerR">{L_MESSAGE}</th>
***************
*** 20,24 ****
<td class="{postrow.ROW_CLASS}" height="28" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
! <td width="100%">{postrow.MINI_POST_IMG}<span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen"> </span> {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
...
[truncated message content] |
|
From: Paul S. O. <ps...@us...> - 2002-03-31 00:06:38
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv12947/includes
Modified Files:
functions.php functions_search.php page_header.php
topic_review.php usercp_avatar.php usercp_email.php
usercp_register.php usercp_sendpasswd.php
usercp_viewprofile.php
Log Message:
pre-freeze on main templates, various bug fixes (highlighting search results, various search related issues, blah blah). These updates need _thorough_ checking, quickly
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.131
retrieving revision 1.132
diff -C2 -r1.131 -r1.132
*** functions.php 25 Mar 2002 12:41:41 -0000 1.131
--- functions.php 31 Mar 2002 00:06:34 -0000 1.132
***************
*** 91,97 ****
}
! function make_jumpbox($match_forum_id = 0)
{
! global $lang, $db, $SID, $nav_links, $phpEx;
$sql = "SELECT c.cat_id, c.cat_title, c.cat_order
--- 91,97 ----
}
! function make_jumpbox($action, $match_forum_id = 0)
{
! global $template, $lang, $db, $SID, $nav_links, $phpEx;
$sql = "SELECT c.cat_id, c.cat_title, c.cat_order
***************
*** 175,179 ****
}
! return $boxstring;
}
--- 175,192 ----
}
! $template->set_filenames(array(
! 'jumpbox' => 'jumpbox.tpl')
! );
! $template->assign_vars(array(
! 'L_GO' => $lang['Go'],
! 'L_JUMP_TO' => $lang['Jump_to'],
! 'L_SELECT_FORUM' => $lang['Select_forum'],
!
! 'S_JUMPBOX_SELECT' => $boxstring,
! 'S_JUMPBOX_ACTION' => append_sid($action))
! );
! $template->assign_var_from_handle('JUMPBOX', 'jumpbox');
!
! return;
}
Index: functions_search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions_search.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** functions_search.php 22 Mar 2002 17:53:28 -0000 1.6
--- functions_search.php 31 Mar 2002 00:06:34 -0000 1.7
***************
*** 23,40 ****
{
// 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("ß", "à", "á", "â", "ã", "ä", "å", "æ", "ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "ø", "ù", "ú", "û", "ü", "ý", "þ", "ÿ");
! // static $accent_replace = array("s", "a", "a", "a", "a", "a", "a", "a", "c", "e", "e", "e", "e", "i", "i", "i", "i", "o", "n", "o", "o", "o", "o", "o", "o", "u", "u", "u", "u", "y", "t", "y");
$entry = ' ' . strip_tags(strtolower($entry)) . ' ';
! for($i = 0; $i < count($accent_match); $i++)
! {
! $entry = str_replace($accent_match[$i], $accent_replace[$i], $entry);
! }
!
! if( $mode == 'post' )
{
// Replace line endings by a space
--- 23,32 ----
{
// Weird, $init_match doesn't work with static when double quotes (") are used...
! static $drop_char_match = array('^', '$', '&', '(', ')', '<', '>', '`', '\'', '"', '|', ',', '@', '_', '?', '%', '-', '~', '+', '.', '[', ']', '{', '}', ':', '\\', '/', '=', '#', '\'', ';', '!');
! static $drop_char_replace = array(' ', ' ', ' ', ' ', ' ', ' ', ' ', '', '', ' ', ' ', ' ', ' ', '', ' ', ' ', '', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' , ' ', ' ', ' ', ' ', ' ', ' ');
$entry = ' ' . strip_tags(strtolower($entry)) . ' ';
! if ( $mode == 'post' )
{
// Replace line endings by a space
***************
*** 49,53 ****
$entry = preg_replace('/\[\/?[a-z\*=\+\-]+(\:?[0-9a-z]+)?:[a-z0-9]{10,}(\:[a-z0-9]+)?=?.*?\]/', ' ', $entry);
}
! else if( $mode == 'search' )
{
$entry = str_replace('+', ' and ', $entry);
--- 41,45 ----
$entry = preg_replace('/\[\/?[a-z\*=\+\-]+(\:?[0-9a-z]+)?:[a-z0-9]{10,}(\:[a-z0-9]+)?=?.*?\]/', ' ', $entry);
}
! else if ( $mode == 'search' )
{
$entry = str_replace('+', ' and ', $entry);
***************
*** 66,78 ****
}
! if( $mode == 'post' )
{
$entry = str_replace('*', ' ', $entry);
// 'words' that consist of <=3 or >=25 characters are removed.
! $entry = preg_replace('/\b([a-z0-9]{1,3}|[a-z0-9]{25,})\b/',' ', $entry);
}
! if( !empty($stopword_list) )
{
for ($j = 0; $j < count($stopword_list); $j++)
--- 58,70 ----
}
! if ( $mode == 'post' )
{
$entry = str_replace('*', ' ', $entry);
// 'words' that consist of <=3 or >=25 characters are removed.
! $entry = preg_replace('/\b([a-z0-9]{1,3}|[a-z0-9]{20,})\b/',' ', $entry);
}
! if ( !empty($stopword_list) )
{
for ($j = 0; $j < count($stopword_list); $j++)
***************
*** 87,91 ****
}
! if( !empty($synonym_list) )
{
for ($j = 0; $j < count($synonym_list); $j++)
--- 79,83 ----
}
! if ( !empty($synonym_list) )
{
for ($j = 0; $j < count($synonym_list); $j++)
***************
*** 104,108 ****
function split_words(&$entry, $mode = 'post')
{
! if( $mode == 'post' )
{
preg_match_all("/\b(\w[\w']*\w+|\w+?)\b/", $entry, $split_entries);
--- 96,100 ----
function split_words(&$entry, $mode = 'post')
{
! if ( $mode == 'post' )
{
preg_match_all("/\b(\w[\w']*\w+|\w+?)\b/", $entry, $split_entries);
***************
*** 129,136 ****
$word = array();
$word_insert_sql = array();
! while( list($word_in, $search_matches) = @each($search_raw_words) )
{
$word_insert_sql[$word_in] = '';
! if( !empty($search_matches) )
{
for ($i = 0; $i < count($search_matches); $i++)
--- 121,128 ----
$word = array();
$word_insert_sql = array();
! while ( list($word_in, $search_matches) = @each($search_raw_words) )
{
$word_insert_sql[$word_in] = '';
! if ( !empty($search_matches) )
{
for ($i = 0; $i < count($search_matches); $i++)
***************
*** 150,154 ****
}
! if( count($word) )
{
sort($word);
--- 142,146 ----
}
! if ( count($word) )
{
sort($word);
***************
*** 179,188 ****
FROM " . SEARCH_WORD_TABLE . "
WHERE word_text IN ($word_text_sql)";
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not select words', '', __LINE__, __FILE__, $sql);
}
! while( $row = $db->sql_fetchrow($result) )
{
$check_words[$row['word_text']] = $row['word_id'];
--- 171,180 ----
FROM " . SEARCH_WORD_TABLE . "
WHERE word_text IN ($word_text_sql)";
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not select words', '', __LINE__, __FILE__, $sql);
}
! while ( $row = $db->sql_fetchrow($result) )
{
$check_words[$row['word_text']] = $row['word_id'];
***************
*** 196,205 ****
{
$new_match = true;
! if( isset($check_words[$word[$i]]) )
{
$new_match = false;
}
! if( $new_match )
{
switch( SQL_LAYER )
--- 188,197 ----
{
$new_match = true;
! if ( isset($check_words[$word[$i]]) )
{
$new_match = false;
}
! if ( $new_match )
{
switch( SQL_LAYER )
***************
*** 207,211 ****
case 'mysql':
case 'mysql4':
! $value_sql .= ( ( $value_sql != '' ) ? ', ' : '' ) . "('" . $word[$i] . "')";
break;
case 'mssql':
--- 199,203 ----
case 'mysql':
case 'mysql4':
! $value_sql .= ( ( $value_sql != '' ) ? ', ' : '' ) . '(\'' . $word[$i] . '\')';
break;
case 'mssql':
***************
*** 239,243 ****
}
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql);
--- 231,235 ----
}
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql);
***************
*** 256,260 ****
FROM " . SEARCH_WORD_TABLE . "
WHERE word_text IN ($match_sql)";
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not insert new word matches', '', __LINE__, __FILE__, $sql);
--- 248,252 ----
FROM " . SEARCH_WORD_TABLE . "
WHERE word_text IN ($match_sql)";
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not insert new word matches', '', __LINE__, __FILE__, $sql);
***************
*** 279,283 ****
$sql = ( $mode == 'global' ) ? "SELECT COUNT(post_id) AS total_posts FROM " . SEARCH_MATCH_TABLE . " GROUP BY post_id" : "SELECT SUM(forum_posts) AS total_posts FROM " . FORUMS_TABLE;
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain post count', '', __LINE__, __FILE__, $sql);
--- 271,275 ----
$sql = ( $mode == 'global' ) ? "SELECT COUNT(post_id) AS total_posts FROM " . SEARCH_MATCH_TABLE . " GROUP BY post_id" : "SELECT SUM(forum_posts) AS total_posts FROM " . FORUMS_TABLE;
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain post count', '', __LINE__, __FILE__, $sql);
***************
*** 286,294 ****
$row = $db->sql_fetchrow($result);
! if( $row['total_posts'] >= 100 )
{
$common_threshold = floor($row['total_posts'] * $fraction);
! if( $mode == 'single' && count($word_id_list) )
{
$word_id_sql = '';
--- 278,286 ----
$row = $db->sql_fetchrow($result);
! if ( $row['total_posts'] >= 100 )
{
$common_threshold = floor($row['total_posts'] * $fraction);
! if ( $mode == 'single' && count($word_id_list) )
{
$word_id_sql = '';
***************
*** 313,317 ****
}
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain common word list', '', __LINE__, __FILE__, $sql);
--- 305,309 ----
}
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain common word list', '', __LINE__, __FILE__, $sql);
***************
*** 319,323 ****
$common_word_id = '';
! while( $row = $db->sql_fetchrow($result) )
{
$common_word_id .= ( ( $common_word_id != '' ) ? ', ' : '' ) . $row['word_id'];
--- 311,315 ----
$common_word_id = '';
! while ( $row = $db->sql_fetchrow($result) )
{
$common_word_id .= ( ( $common_word_id != '' ) ? ', ' : '' ) . $row['word_id'];
***************
*** 326,335 ****
$db->sql_freeresult($result);
! if( $common_word_id != '' )
{
$sql = "UPDATE " . SEARCH_WORD_TABLE . "
SET word_common = " . TRUE . "
WHERE word_id IN ($common_word_id)";
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not delete word list entry', '', __LINE__, __FILE__, $sql);
--- 318,327 ----
$db->sql_freeresult($result);
! if ( $common_word_id != '' )
{
$sql = "UPDATE " . SEARCH_WORD_TABLE . "
SET word_common = " . TRUE . "
WHERE word_id IN ($common_word_id)";
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not delete word list entry', '', __LINE__, __FILE__, $sql);
***************
*** 338,342 ****
$sql = "DELETE FROM " . SEARCH_MATCH_TABLE . "
WHERE word_id IN ($common_word_id)";
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not delete word match entry', '', __LINE__, __FILE__, $sql);
--- 330,334 ----
$sql = "DELETE FROM " . SEARCH_MATCH_TABLE . "
WHERE word_id IN ($common_word_id)";
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not delete word match entry', '', __LINE__, __FILE__, $sql);
***************
*** 354,358 ****
$words_removed = false;
! switch( SQL_LAYER )
{
case 'mysql':
--- 346,350 ----
$words_removed = false;
! switch ( SQL_LAYER )
{
case 'mysql':
***************
*** 365,369 ****
{
$word_id_sql = '';
! while( $row = $db->sql_fetchrow($result) )
{
$word_id_sql .= ( $word_id_sql != '' ) ? ', ' . $row['word_id'] : $row['word_id'];
--- 357,361 ----
{
$word_id_sql = '';
! while ( $row = $db->sql_fetchrow($result) )
{
$word_id_sql .= ( $word_id_sql != '' ) ? ', ' . $row['word_id'] : $row['word_id'];
***************
*** 378,382 ****
{
$word_id_sql = '';
! while( $row = $db->sql_fetchrow($result) )
{
$word_id_sql .= ( $word_id_sql != '' ) ? ', ' . $row['word_id'] : $row['word_id'];
--- 370,374 ----
{
$word_id_sql = '';
! while ( $row = $db->sql_fetchrow($result) )
{
$word_id_sql .= ( $word_id_sql != '' ) ? ', ' . $row['word_id'] : $row['word_id'];
***************
*** 435,444 ****
// Username search
//
! function username_search($search_match, $is_inline_review = 0, $default_list = "")
{
global $db, $board_config, $template, $lang, $images, $theme, $phpEx, $phpbb_root_path;
global $starttime;
! $author_list = '';
if ( !empty($search_match) )
{
--- 427,436 ----
// Username search
//
! function username_search($search_match)
{
global $db, $board_config, $template, $lang, $images, $theme, $phpEx, $phpbb_root_path;
global $starttime;
! $username_list = '';
if ( !empty($search_match) )
{
***************
*** 458,462 ****
do
{
! $author_list .= '<option value="' . $row['username'] . '">' .$row['username'] . '</option>';
}
while ( $row = $db->sql_fetchrow($result) );
--- 450,454 ----
do
{
! $username_list .= '<option value="' . $row['username'] . '">' . $row['username'] . '</option>';
}
while ( $row = $db->sql_fetchrow($result) );
***************
*** 464,510 ****
else
{
! $author_list = '<option>' . $lang['No_match']. '</option>';
}
-
}
! if ( !$is_inline_review )
! {
! $gen_simple_header = TRUE;
! $page_title = $lang['Search'];
! include($phpbb_root_path . 'includes/page_header.'.$phpEx);
!
! $template->set_filenames(array(
! 'search_user_body' => 'search_username.tpl')
! );
! $template->assign_vars(array(
! 'L_CLOSE_WINDOW' => $lang['Close_window'],
! 'L_SEARCH_USERNAME' => $lang['Find_username'],
! 'L_UPDATE_USERNAME' => $lang['Select_username'],
! 'L_SELECT' => $lang['Select'],
! 'L_SEARCH' => $lang['Search'],
! 'L_SEARCH_EXPLAIN' => $lang['Search_author_explain'],
! 'L_CLOSE_WINDOW' => $lang['Close_window'],
! 'S_AUTHOR_OPTIONS' => $author_list,
! 'S_SEARCH_ACTION' => append_sid("search.$phpEx?mode=searchuser"))
! );
! //
! // If we have results then dump them out and enable
! // the appropriate switch block
! //
! if ( !empty($author_list) )
! {
! $template->assign_block_vars('switch_select_name', array());
! }
! $template->pparse('search_user_body');
! include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
}
! return($author_list);
}
--- 456,496 ----
else
{
! $username_list .= '<option>' . $lang['No_match']. '</option>';
}
}
! $gen_simple_header = TRUE;
! $page_title = $lang['Search'];
! include($phpbb_root_path . 'includes/page_header.'.$phpEx);
! $template->set_filenames(array(
! 'search_user_body' => 'search_username.tpl')
! );
! $template->assign_vars(array(
! 'USERNAME' => ( !empty($search_match) ) ? $search_match : '',
! 'L_CLOSE_WINDOW' => $lang['Close_window'],
! 'L_SEARCH_USERNAME' => $lang['Find_username'],
! 'L_UPDATE_USERNAME' => $lang['Select_username'],
! 'L_SELECT' => $lang['Select'],
! 'L_SEARCH' => $lang['Search'],
! 'L_SEARCH_EXPLAIN' => $lang['Search_author_explain'],
! 'L_CLOSE_WINDOW' => $lang['Close_window'],
! 'S_USERNAME_OPTIONS' => $username_list,
! 'S_SEARCH_ACTION' => append_sid("search.$phpEx?mode=searchuser"))
! );
! if ( $username_list != '' )
! {
! $template->assign_block_vars('switch_select_name', array());
}
! $template->pparse('search_user_body');
!
! include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
!
! return;
}
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.104
retrieving revision 1.105
diff -C2 -r1.104 -r1.105
*** page_header.php 26 Mar 2002 17:47:15 -0000 1.104
--- page_header.php 31 Mar 2002 00:06:34 -0000 1.105
***************
*** 32,51 ****
//
$do_gzip_compress = FALSE;
! if($board_config['gzip_compress'])
{
$phpver = phpversion();
! if($phpver >= '4.0.4pl1')
{
! if(extension_loaded('zlib'))
{
ob_start('ob_gzhandler');
}
}
! else if($phpver > '4.0')
{
! if(strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip'))
{
! if(extension_loaded('zlib'))
{
$do_gzip_compress = TRUE;
--- 32,51 ----
//
$do_gzip_compress = FALSE;
! if ( $board_config['gzip_compress'] )
{
$phpver = phpversion();
! if ( $phpver >= '4.0.4pl1' )
{
! if ( extension_loaded('zlib') )
{
ob_start('ob_gzhandler');
}
}
! else if ( $phpver > '4.0' )
{
! if ( strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip') )
{
! if ( extension_loaded('zlib') )
{
$do_gzip_compress = TRUE;
***************
*** 69,80 ****
// Generate logged in/logged out status
//
! if($userdata['session_logged_in'])
{
! $u_login_logout = "login.$phpEx?logout=true";
! $l_login_logout = $lang['Logout'] . ' [ ' . $userdata["username"] . ' ]';
}
else
{
! $u_login_logout = "login.$phpEx";
$l_login_logout = $lang['Login'];
}
--- 69,80 ----
// Generate logged in/logged out status
//
! if ( $userdata['session_logged_in'] )
{
! $u_login_logout = 'login.'.$phpEx.'?logout=true';
! $l_login_logout = $lang['Logout'] . ' [ ' . $userdata['username'] . ' ]';
}
else
{
! $u_login_logout = 'login.'.$phpEx;
$l_login_logout = $lang['Login'];
}
***************
*** 88,92 ****
$user_forum_sql = ( !empty($forum_id) ) ? "AND ( u.user_session_page = $forum_id
OR s.session_page = $forum_id)" : '';
-
$sql = "SELECT u.username, u.user_id, u.user_allow_viewonline, u.user_level, s.session_logged_in, s.session_ip
FROM ".USERS_TABLE." u, ".SESSIONS_TABLE." s
--- 88,91 ----
***************
*** 96,101 ****
$user_forum_sql
ORDER BY u.username ASC, s.session_ip ASC";
! $result = $db->sql_query($sql);
! if(!$result)
{
message_die(GENERAL_ERROR, 'Could not obtain user/online information', '', __LINE__, __FILE__, $sql);
--- 95,99 ----
$user_forum_sql
ORDER BY u.username ASC, s.session_ip ASC";
! if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain user/online information', '', __LINE__, __FILE__, $sql);
***************
*** 116,131 ****
{
// User is logged in and therefor not a guest
! if( $row['session_logged_in'] )
{
// Skip multiple sessions for one user
! if( $row['user_id'] != $prev_user_id )
{
$style_color = '';
! if( $row['user_level'] == ADMIN )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
}
! else if( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
--- 114,129 ----
{
// User is logged in and therefor not a guest
! if ( $row['session_logged_in'] )
{
// Skip multiple sessions for one user
! if ( $row['user_id'] != $prev_user_id )
{
$style_color = '';
! if ( $row['user_level'] == ADMIN )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
}
! else if ( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
***************
*** 133,137 ****
}
! if( $row['user_allow_viewonline'] )
{
$user_online_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'>' . $row['username'] . '</a>';
--- 131,135 ----
}
! if ( $row['user_allow_viewonline'] )
{
$user_online_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'>' . $row['username'] . '</a>';
***************
*** 144,157 ****
}
! if( $row['user_allow_viewonline'] || $userdata['user_level'] == ADMIN )
{
! $online_userlist .= ( $online_userlist != "" ) ? ", " . $user_online_link : $user_online_link;
}
}
}
else
{
// Skip multiple sessions for one user
! if( $row['session_ip'] != $prev_session_ip )
{
$guests_online++;
--- 142,157 ----
}
! if ( $row['user_allow_viewonline'] || $userdata['user_level'] == ADMIN )
{
! $online_userlist .= ( $online_userlist != '' ) ? ', ' . $user_online_link : $user_online_link;
}
}
+
+ $prev_user_id = $row['user_id'];
}
else
{
// Skip multiple sessions for one user
! if ( $row['session_ip'] != $prev_session_ip )
{
$guests_online++;
***************
*** 160,167 ****
$prev_session_ip = $row['session_ip'];
- $prev_user_id = $row['user_id'];
}
! if( empty($online_userlist) )
{
$online_userlist = $lang['None'];
--- 160,166 ----
$prev_session_ip = $row['session_ip'];
}
! if ( empty($online_userlist) )
{
$online_userlist = $lang['None'];
***************
*** 173,180 ****
if ( $total_online_users > $board_config['record_online_users'])
{
$sql = "UPDATE " . CONFIG_TABLE . "
SET config_value = '$total_online_users'
WHERE config_name = 'record_online_users'";
! if ( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update online user record (nr of users)', '', __LINE__, __FILE__, $sql);
--- 172,182 ----
if ( $total_online_users > $board_config['record_online_users'])
{
+ $board_config['record_online_users'] = $total_online_users;
+ $board_config['record_online_date'] = time();
+
$sql = "UPDATE " . CONFIG_TABLE . "
SET config_value = '$total_online_users'
WHERE config_name = 'record_online_users'";
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update online user record (nr of users)', '', __LINE__, __FILE__, $sql);
***************
*** 182,201 ****
$sql = "UPDATE " . CONFIG_TABLE . "
! SET config_value = '" . time() . "'
WHERE config_name = 'record_online_date'";
! if ( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update online user record (date)', '', __LINE__, __FILE__, $sql);
}
-
- $board_config['record_online_users'] = $total_online_users;
- $board_config['record_online_date'] = time();
}
! if( $total_online_users == 0 )
{
$l_t_user_s = $lang['Online_users_zero_total'];
}
! else if( $total_online_users == 1 )
{
$l_t_user_s = $lang['Online_user_total'];
--- 184,200 ----
$sql = "UPDATE " . CONFIG_TABLE . "
! SET config_value = '" . $board_config['record_online_date'] . "'
WHERE config_name = 'record_online_date'";
! if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update online user record (date)', '', __LINE__, __FILE__, $sql);
}
}
! if ( $total_online_users == 0 )
{
$l_t_user_s = $lang['Online_users_zero_total'];
}
! else if ( $total_online_users == 1 )
{
$l_t_user_s = $lang['Online_user_total'];
***************
*** 206,214 ****
}
! if( $logged_visible_online == 0 )
{
$l_r_user_s = $lang['Reg_users_zero_total'];
}
! else if( $logged_visible_online == 1 )
{
$l_r_user_s = $lang['Reg_user_total'];
--- 205,213 ----
}
! if ( $logged_visible_online == 0 )
{
$l_r_user_s = $lang['Reg_users_zero_total'];
}
! else if ( $logged_visible_online == 1 )
{
$l_r_user_s = $lang['Reg_user_total'];
***************
*** 219,227 ****
}
! if( $logged_hidden_online == 0 )
{
$l_h_user_s = $lang['Hidden_users_zero_total'];
}
! else if( $logged_hidden_online == 1 )
{
$l_h_user_s = $lang['Hidden_user_total'];
--- 218,226 ----
}
! if ( $logged_hidden_online == 0 )
{
$l_h_user_s = $lang['Hidden_users_zero_total'];
}
! else if ( $logged_hidden_online == 1 )
{
$l_h_user_s = $lang['Hidden_user_total'];
***************
*** 232,240 ****
}
! if( $guests_online == 0 )
{
$l_g_user_s = $lang['Guest_users_zero_total'];
}
! else if( $guests_online == 1 )
{
$l_g_user_s = $lang['Guest_user_total'];
--- 231,239 ----
}
! if ( $guests_online == 0 )
{
$l_g_user_s = $lang['Guest_users_zero_total'];
}
! else if ( $guests_online == 1 )
{
$l_g_user_s = $lang['Guest_user_total'];
***************
*** 254,270 ****
// if user is logged in
//
! if( $userdata['session_logged_in'] )
{
! if( $userdata['user_new_privmsg'] )
{
$l_message_new = ( $userdata['user_new_privmsg'] == 1 ) ? $lang['New_pm'] : $lang['New_pms'];
$l_privmsgs_text = sprintf($l_message_new, $userdata['user_new_privmsg']);
! if( $userdata['user_last_privmsg'] > $userdata['user_lastvisit'] )
{
$sql = "UPDATE " . USERS_TABLE . "
SET user_last_privmsg = " . $userdata['user_lastvisit'] . "
WHERE user_id = " . $userdata['user_id'];
! if( !$status = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update private message new/read time for user', '', __LINE__, __FILE__, $sql);
--- 253,269 ----
// if user is logged in
//
! if ( $userdata['session_logged_in'] )
{
! if ( $userdata['user_new_privmsg'] )
{
$l_message_new = ( $userdata['user_new_privmsg'] == 1 ) ? $lang['New_pm'] : $lang['New_pms'];
$l_privmsgs_text = sprintf($l_message_new, $userdata['user_new_privmsg']);
! if ( $userdata['user_last_privmsg'] > $userdata['user_lastvisit'] )
{
$sql = "UPDATE " . USERS_TABLE . "
SET user_last_privmsg = " . $userdata['user_lastvisit'] . "
WHERE user_id = " . $userdata['user_id'];
! if ( !($status = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not update private message new/read time for user', '', __LINE__, __FILE__, $sql);
***************
*** 288,292 ****
}
! if( $userdata['user_unread_privmsg'] )
{
$l_message_unread = ( $userdata['user_unread_privmsg'] == 1 ) ? $lang['Unread_pm'] : $lang['Unread_pms'];
--- 287,291 ----
}
! if ( $userdata['user_unread_privmsg'] )
{
$l_message_unread = ( $userdata['user_unread_privmsg'] == 1 ) ? $lang['Unread_pm'] : $lang['Unread_pms'];
***************
*** 302,306 ****
$icon_pm = $images['pm_no_new_msg'];
$l_privmsgs_text = $lang['Login_check_pm'];
! $l_privmsgs_text_unread = "";
$s_privmsg_new = 0;
}
--- 301,305 ----
$icon_pm = $images['pm_no_new_msg'];
$l_privmsgs_text = $lang['Login_check_pm'];
! $l_privmsgs_text_unread = '';
$s_privmsg_new = 0;
}
***************
*** 311,317 ****
$nav_links_html = '';
$nav_link_proto = '<link rel="%s" href="%s" title="%s" />' . "\n";
! while(list($nav_item, $nav_array) = @each($nav_links) )
{
! if( !empty($nav_array['url']) )
{
$nav_links_html .= sprintf($nav_link_proto, $nav_item, $nav_array['url'], $nav_array['title']);
--- 310,316 ----
$nav_links_html = '';
$nav_link_proto = '<link rel="%s" href="%s" title="%s" />' . "\n";
! while( list($nav_item, $nav_array) = @each($nav_links) )
{
! if ( !empty($nav_array['url']) )
{
$nav_links_html .= sprintf($nav_link_proto, $nav_item, $nav_array['url'], $nav_array['title']);
***************
*** 320,324 ****
{
// We have a nested array, used for items like <link rel='chapter'> that can occur more than once.
! while(list(,$nested_array) = each($nav_array) )
{
$nav_links_html .= sprintf($nav_link_proto, $nav_item, $nested_array['url'], $nested_array['title']);
--- 319,323 ----
{
// We have a nested array, used for items like <link rel='chapter'> that can occur more than once.
! while( list(,$nested_array) = each($nav_array) )
{
$nav_links_html .= sprintf($nav_link_proto, $nav_item, $nested_array['url'], $nested_array['title']);
***************
*** 329,334 ****
//
// The following assigns all _common_ variables that may be used at any point
! // in a template. Note that all URL's should be wrapped in append_sid, as
! // should all S_x_ACTIONS for forms.
//
$template->assign_vars(array(
--- 328,332 ----
//
// The following assigns all _common_ variables that may be used at any point
! // in a template.
//
$template->assign_vars(array(
***************
*** 336,389 ****
'SITE_DESCRIPTION' => $board_config['site_desc'],
'PAGE_TITLE' => $page_title,
'TOTAL_USERS_ONLINE' => $l_online_users,
! 'LOGGED_IN_USER_LIST' => $online_userlist,
'PRIVATE_MESSAGE_INFO' => $l_privmsgs_text,
'PRIVATE_MESSAGE_INFO_UNREAD' => $l_privmsgs_text_unread,
'PRIVATE_MESSAGE_NEW_FLAG' => $s_privmsg_new,
- 'LAST_VISIT_DATE' => sprintf($lang['You_last_visit'], $s_last_visit),
- 'CURRENT_TIME' => sprintf($lang['Current_time'], create_date($board_config['default_dateformat'], time(), $board_config['board_timezone'])),
'PRIVMSG_IMG' => $icon_pm,
! 'L_USERNAME' => $lang['Username'],
! 'L_PASSWORD' => $lang['Password'],
! 'L_LOGIN' => $lang['Login'],
! 'L_LOG_ME_IN' => $lang['Log_me_in'],
! 'L_INDEX' => sprintf($lang['Forum_Index'], $board_config['sitename']),
! 'L_REGISTER' => $lang['Register'],
! 'L_PROFILE' => $lang['Profile'],
! 'L_SEARCH' => $lang['Search'],
! 'L_PRIVATEMSGS' => $lang['Private_Messages'],
! 'L_WHO_IS_ONLINE' => $lang['Who_is_Online'],
! 'L_MEMBERLIST' => $lang['Memberlist'],
! 'L_FAQ' => $lang['FAQ'],
! 'L_USERGROUPS' => $lang['Usergroups'],
! 'L_FORUM' => $lang['Forum'],
! 'L_TOPICS' => $lang['Topics'],
! 'L_REPLIES' => $lang['Replies'],
! 'L_VIEWS' => $lang['Views'],
! 'L_POSTS' => $lang['Posts'],
! 'L_LASTPOST' => $lang['Last_Post'],
! 'L_NO_NEW_POSTS' => $lang['No_new_posts'],
! 'L_NEW_POSTS' => $lang['New_posts'],
! 'L_NO_NEW_POSTS_HOT' => $lang['No_new_posts_hot'],
! 'L_NEW_POSTS_HOT' => $lang['New_posts_hot'],
! 'L_NO_NEW_POSTS_LOCKED' => $lang['No_new_posts_locked'],
! 'L_NEW_POSTS_LOCKED' => $lang['New_posts_locked'],
! 'L_ANNOUNCEMENT' => $lang['Post_Announcement'],
! 'L_STICKY' => $lang['Post_Sticky'],
! 'L_POSTED' => $lang['Posted'],
! 'L_JOINED' => $lang['Joined'],
! 'L_AUTO_LOGIN' => $lang['Log_me_in'],
! 'L_AUTHOR' => $lang['Author'],
! 'L_SUBJECT' => $lang['Subject'],
! 'L_MESSAGE' => $lang['Message'],
! 'L_LOGIN_LOGOUT' => $l_login_logout,
'L_SEARCH_NEW' => $lang['Search_new'],
! 'L_SEARCH_UNANSWERED' => $lang['Search_unanswered'],
'L_SEARCH_SELF' => $lang['Search_your_posts'],
'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'),
'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),
- 'L_RECORD_USERS' => sprintf($lang['Record_online_users'], $board_config['record_online_users'], create_date($board_config['default_dateformat'], $board_config['record_online_date'], $board_config['board_timezone'])),
'U_SEARCH_UNANSWERED' => append_sid('search.'.$phpEx.'?search_id=unanswered'),
--- 334,368 ----
'SITE_DESCRIPTION' => $board_config['site_desc'],
'PAGE_TITLE' => $page_title,
+ 'LAST_VISIT_DATE' => sprintf($lang['You_last_visit'], $s_last_visit),
+ 'CURRENT_TIME' => sprintf($lang['Current_time'], create_date($board_config['default_dateformat'], time(), $board_config['board_timezone'])),
'TOTAL_USERS_ONLINE' => $l_online_users,
! 'LOGGED_IN_USER_LIST' => $online_userlist,
! 'RECORD_USERS' => sprintf($lang['Record_online_users'], $board_config['record_online_users'], create_date($board_config['default_dateformat'], $board_config['record_online_date'], $board_config['board_timezone'])),
'PRIVATE_MESSAGE_INFO' => $l_privmsgs_text,
'PRIVATE_MESSAGE_INFO_UNREAD' => $l_privmsgs_text_unread,
'PRIVATE_MESSAGE_NEW_FLAG' => $s_privmsg_new,
'PRIVMSG_IMG' => $icon_pm,
! 'L_USERNAME' => $lang['Username'],
! 'L_PASSWORD' => $lang['Password'],
! 'L_LOGIN_LOGOUT' => $l_login_logout,
! 'L_LOGIN' => $lang['Login'],
! 'L_LOG_ME_IN' => $lang['Log_me_in'],
! 'L_AUTO_LOGIN' => $lang['Log_me_in'],
! 'L_INDEX' => sprintf($lang['Forum_Index'], $board_config['sitename']),
! 'L_REGISTER' => $lang['Register'],
! 'L_PROFILE' => $lang['Profile'],
! 'L_SEARCH' => $lang['Search'],
! 'L_PRIVATEMSGS' => $lang['Private_Messages'],
! 'L_WHO_IS_ONLINE' => $lang['Who_is_Online'],
! 'L_MEMBERLIST' => $lang['Memberlist'],
! 'L_FAQ' => $lang['FAQ'],
! 'L_USERGROUPS' => $lang['Usergroups'],
'L_SEARCH_NEW' => $lang['Search_new'],
! 'L_SEARCH_UNANSWERED' => $lang['Search_unanswered'],
'L_SEARCH_SELF' => $lang['Search_your_posts'],
'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'),
'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),
'U_SEARCH_UNANSWERED' => append_sid('search.'.$phpEx.'?search_id=unanswered'),
***************
*** 456,460 ****
// Login box?
//
! if( !$userdata['session_logged_in'] )
{
$template->assign_block_vars('switch_user_logged_out', array());
--- 435,439 ----
// Login box?
//
! if ( !$userdata['session_logged_in'] )
{
$template->assign_block_vars('switch_user_logged_out', array());
***************
*** 464,485 ****
$template->assign_block_vars('switch_user_logged_in', array());
! if( !empty($userdata['user_popup_pm']) )
{
$template->assign_block_vars('switch_enable_pm_popup', array());
}
}
! if ( $HTTP_SERVER_VARS['REQUEST_METHOD'] == 'POST' )
! {
! header ('Cache-Control: private, must-revalidate, max-age=25');
! }
! else
{
header ('Cache-Control: private, no-cache, must-revalidate, pre-check=2, post-check=2, max-age=25');
header ('Pragma: no-cache');
- header ('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
}
header ('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
$template->pparse('overall_header');
! ?>
--- 443,461 ----
$template->assign_block_vars('switch_user_logged_in', array());
! if ( !empty($userdata['user_popup_pm']) )
{
$template->assign_block_vars('switch_enable_pm_popup', array());
}
}
!
! if ( getenv('REQUEST_METHOD') != 'POST' )
{
header ('Cache-Control: private, no-cache, must-revalidate, pre-check=2, post-check=2, max-age=25');
header ('Pragma: no-cache');
}
+ header ('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
header ('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
$template->pparse('overall_header');
! ?>
\ No newline at end of file
Index: topic_review.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/topic_review.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** topic_review.php 18 Mar 2002 23:56:36 -0000 1.4
--- topic_review.php 31 Mar 2002 00:06:34 -0000 1.5
***************
*** 29,35 ****
global $starttime;
! if( !$is_inline_review )
{
! if( !isset($topic_id) )
{
message_die(GENERAL_MESSAGE, 'Topic_not_exist');
--- 29,35 ----
global $starttime;
! if ( !$is_inline_review )
{
! if ( !isset($topic_id) )
{
message_die(GENERAL_MESSAGE, 'Topic_not_exist');
***************
*** 43,52 ****
WHERE t.topic_id = $topic_id
AND f.forum_id = t.forum_id";
! if( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, "Couldn't obtain topic information", "", __LINE__, __FILE__, $sql);
}
! if( !($forum_row = $db->sql_fetchrow($result)) )
{
message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
--- 43,52 ----
WHERE t.topic_id = $topic_id
AND f.forum_id = t.forum_id";
! if ( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, 'Could not obtain topic information', '', __LINE__, __FILE__, $sql);
}
! if ( !($forum_row = $db->sql_fetchrow($result)) )
{
message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
***************
*** 77,81 ****
// Define censored word matches
//
! if( empty($orig_word) && empty($replacement_word) )
{
$orig_word = array();
--- 77,81 ----
// Define censored word matches
//
! if ( empty($orig_word) && empty($replacement_word) )
{
$orig_word = array();
***************
*** 88,100 ****
// Dump out the page header and load viewtopic body template
//
! if( !$is_inline_review )
{
$gen_simple_header = TRUE;
! $page_title = $lang['Topic_review'] ." - $topic_title";
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$template->set_filenames(array(
! "reviewbody" => "posting_topic_review.tpl")
);
}
--- 88,100 ----
// Dump out the page header and load viewtopic body template
//
! if ( !$is_inline_review )
{
$gen_simple_header = TRUE;
! $page_title = $lang['Topic_review'] . ' - ' . $topic_title;
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$template->set_filenames(array(
! 'reviewbody' => 'posting_topic_review.tpl')
);
}
***************
*** 110,116 ****
ORDER BY p.post_time DESC
LIMIT " . $board_config['posts_per_page'];
! if( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, "Couldn't obtain post/user information.", "", __LINE__, __FILE__, $sql);
}
--- 110,116 ----
ORDER BY p.post_time DESC
LIMIT " . $board_config['posts_per_page'];
! if ( !($result = $db->sql_query($sql)) )
{
! message_die(GENERAL_ERROR, 'Could not obtain post/user information', '', __LINE__, __FILE__, $sql);
}
***************
*** 121,124 ****
--- 121,127 ----
if ( $row = $db->sql_fetchrow($result) )
{
+ $mini_post_img = $images['icon_minipost'];
+ $mini_post_alt = $lang['Post'];
+
$i = 0;
do
***************
*** 129,134 ****
$post_date = create_date($board_config['default_dateformat'], $row['post_time'], $board_config['board_timezone']);
- $mini_post_img = '<img src="' . $images['icon_minipost'] . '" alt="' . $lang['Post'] . '" />';
-
//
// Handle anon users posting with usernames
--- 132,135 ----
***************
*** 140,144 ****
}
! $post_subject = ( $row['post_subject'] != "" ) ? $row['post_subject'] : "";
$message = $row['post_text'];
--- 141,145 ----
}
! $post_subject = ( $row['post_subject'] != '' ) ? $row['post_subject'] : '';
$message = $row['post_text'];
***************
*** 151,160 ****
if ( !$board_config['allow_html'] && $row['enable_html'] )
{
! $message = preg_replace("#(<)([\/]?.*?)(>)#is", "<\\2>", $message);
}
if ( $bbcode_uid != "" )
{
! $message = ( $board_config['allow_bbcode'] ) ? bbencode_second_pass($message, $bbcode_uid) : preg_replace("/\:[0-9a-z\:]+\]/si", "]", $message);
}
--- 152,161 ----
if ( !$board_config['allow_html'] && $row['enable_html'] )
{
! $message = preg_replace('#(<)([\/]?.*?)(>)#is', '<\2>', $message);
}
if ( $bbcode_uid != "" )
{
! $message = ( $board_config['allow_bbcode'] ) ? bbencode_second_pass($message, $bbcode_uid) : preg_replace('/\:[0-9a-z\:]+\]/si', ']', $message);
}
***************
*** 172,176 ****
}
! $message = str_replace("\n", "<br />", $message);
//
--- 173,177 ----
}
! $message = str_replace("\n", '<br />', $message);
//
***************
*** 181,193 ****
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
! $template->assign_block_vars("postrow", array(
! "ROW_COLOR" => "#" . $row_color,
! "ROW_CLASS" => $row_class,
!
! "MINI_POST_IMG" => $mini_post_img,
! "POSTER_NAME" => $poster,
! "POST_DATE" => $post_date,
! "POST_SUBJECT" => $post_subject,
! "MESSAGE" => $message)
);
--- 182,196 ----
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
! $template->assign_block_vars('postrow', array(
! 'ROW_COLOR' => '#' . $row_color,
! 'ROW_CLASS' => $row_class,
!
! 'MINI_POST_IMG' => $mini_post_img,
! 'POSTER_NAME' => $poster,
! 'POST_DATE' => $post_date,
! 'POST_SUBJECT' => $post_subject,
! 'MESSAGE' => $message,
!
! 'L_MINI_POST_ALT' => $mini_post_alt)
);
***************
*** 198,213 ****
else
{
! message_die(GENERAL_MESSAGE, 'Topic_post_not_exist', "", __LINE__, __FILE__, $sql);
}
$template->assign_vars(array(
! "L_POSTED" => $lang['Posted'],
! "L_POST_SUBJECT" => $lang['Post_subject'],
! "L_TOPIC_REVIEW" => $lang['Topic_review'])
);
if ( !$is_inline_review )
{
! $template->pparse("reviewbody");
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
}
--- 201,218 ----
else
{
! message_die(GENERAL_MESSAGE, 'Topic_post_not_exist', '', __LINE__, __FILE__, $sql);
}
$template->assign_vars(array(
! 'L_AUTHOR' => $lang['Author'],
! 'L_MESSAGE' => $lang['Message'],
! 'L_POSTED' => $lang['Posted'],
! 'L_POST_SUBJECT' => $lang['Post_subject'],
! 'L_TOPIC_REVIEW' => $lang['Topic_review'])
);
if ( !$is_inline_review )
{
! $template->pparse('reviewbody');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
}
Index: usercp_avatar.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_avatar.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** usercp_avatar.php 23 Mar 2002 14:56:51 -0000 1.7
--- usercp_avatar.php 31 Mar 2002 00:06:34 -0000 1.8
***************
*** 279,283 ****
@reset($avatar_images);
! $s_categories = '';
while( list($key) = each($avatar_images) )
{
--- 279,283 ----
@reset($avatar_images);
! $s_categories = '<select name="avatarcategory">';
while( list($key) = each($avatar_images) )
{
***************
*** 288,291 ****
--- 288,292 ----
}
}
+ $s_categories .= '</select>';
$s_colspan = 0;
***************
*** 324,328 ****
'L_CATEGORY' => $lang['Select_category'],
! 'S_OPTIONS_CATEGORIES' => $s_categories,
'S_COLSPAN' => $s_colspan,
'S_PROFILE_ACTION' => append_sid("profile.$phpEx?mode=$mode"),
--- 325,329 ----
'L_CATEGORY' => $lang['Select_category'],
! 'S_CATEGORY_SELECT' => $s_categories,
'S_COLSPAN' => $s_colspan,
'S_PROFILE_ACTION' => append_sid("profile.$phpEx?mode=$mode"),
Index: usercp_email.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_email.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** usercp_email.php 22 Mar 2002 19:32:35 -0000 1.6
--- usercp_email.php 31 Mar 2002 00:06:34 -0000 1.7
***************
*** 95,108 ****
$emailer = new emailer($board_config['smtp_delivery']);
! $email_headers = "From: " . $userdata['user_email'] . "\n";
if ( !empty($HTTP_POST_VARS['cc_email']) )
{
$email_headers .= "Cc: " . $userdata['user_email'] . "\n";
}
! $email_headers .= "Return-Path: " . $userdata['user_email'] . "\n";
! $email_headers .= "X-AntiAbuse: Board servername - " . $server_name . "\n";
! $email_headers .= "X-AntiAbuse: User_id - " . $userdata['user_id'] . "\n";
! $email_headers .= "X-AntiAbuse: Username - " . $userdata['username'] . "\n";
! $email_headers .= "X-AntiAbuse: User IP - " . decode_ip($user_ip) . "\r\n";
$emailer->use_template('profile_send_email', $user_lang);
--- 95,108 ----
$emailer = new emailer($board_config['smtp_delivery']);
! $email_headers = 'From: ' . $userdata['user_email'] . "\n";
if ( !empty($HTTP_POST_VARS['cc_email']) )
{
$email_headers .= "Cc: " . $userdata['user_email'] . "\n";
}
! $email_headers .= 'Return-Path: ' . $userdata['user_email'] . "\n";
! $email_headers .= 'X-AntiAbuse: Board servername - ' . $server_name . "\n";
! $email_headers .= 'X-AntiAbuse: User_id - ' . $userdata['user_id'] . "\n";
! $email_headers .= 'X-AntiAbuse: Username - ' . $userdata['username'] . "\n";
! $email_headers .= 'X-AntiAbuse: User IP - ' . decode_ip($user_ip) . "\r\n";
$emailer->use_template('profile_send_email', $user_lang);
***************
*** 139,156 ****
$template->set_filenames(array(
! 'body' => 'profile_send_email.tpl',
! 'jumpbox' => 'jumpbox.tpl')
);
!
! $jumpbox = make_jumpbox();
! $template->assign_vars(array(
! 'L_GO' => $lang['Go'],
! 'L_JUMP_TO' => $lang['Jump_to'],
! 'L_SELECT_FORUM' => $lang['Select_forum'],
!
! 'S_JUMPBOX_LIST' => $jumpbox,
! 'S_JUMPBOX_ACTION' => append_sid("viewforum.$phpEx"))
! );
! $template->assign_var_from_handle('JUMPBOX', 'jumpbox');
if ( $error )
--- 139,145 ----
$template->set_filenames(array(
! 'body' => 'profile_send_email.tpl')
);
! make_jumpbox('viewforum.'.$phpEx);
if ( $error )
***************
*** 165,177 ****
}
- if ( $userdata['user_sig'] != '' )
- {
- $template->assign_block_vars('signature_checkbox', array());
- }
-
$template->assign_vars(array(
'USERNAME' => $username,
- 'S_SIGNATURE_CHECKED' => ( $attach_sig ) ? 'checked="checked"' : '',
'S_POST_ACTION' => append_sid("profile.$phpEx?&mode=email&" . POST_USERS_URL . "=$user_id"),
--- 154,160 ----
***************
*** 185,189 ****
'L_OPTIONS' => $lang['Options'],
'L_CC_EMAIL' => $lang['CC_email'],
- 'L_NOTIFY_ON_REPLY' => $lang['Notify'],
'L_SPELLCHECK' => $lang['Spellcheck'],
'L_SEND_EMAIL' => $lang['Send_email'])
--- 168,171 ----
***************
*** 204,206 ****
}
! ?>
--- 186,188 ----
}
! ?>
\ No newline at end of file
Index: usercp_register.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_register.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** usercp_register.php 29 Mar 2002 00:24:13 -0000 1.17
--- usercp_register.php 31 Mar 2002 00:06:34 -0000 1.18
***************
*** 681,698 ****
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
! $template->set_filenames(array(
! "jumpbox" => "jumpbox.tpl")
! );
!
! $jumpbox = make_jumpbox();
! $template->assign_vars(array(
! 'L_GO' => $lang['Go'],
! 'L_JUMP_TO' => $lang['Jump_to'],
! 'L_SELECT_FORUM' => $lang['Select_forum'],
!
! 'S_JUMPBOX_LIST' => $jumpbox,
! 'S_JUMPBOX_ACTION' => append_sid('viewforum.$phpEx'))
! );
! $template->assign_var_from_handle('JUMPBOX', 'jumpbox');
if ( $mode == 'editprofile' )
--- 681,685 ----
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
! make_jumpbox('viewforum.'.$phpEx);
if ( $mode == 'editprofile' )
***************
*** 712,716 ****
$template->set_filenames(array(
! "body" => "profile_avatar_gallery.tpl")
);
--- 699,703 ----
$template->set_filenames(array(
! 'body' => 'profile_avatar_gallery.tpl')
);
***************
*** 787,791 ****
if ( $mode == 'editprofile' )
{
! $template->assign_block_vars('edit_profile', array());
}
--- 774,778 ----
if ( $mode == 'editprofile' )
{
! $template->assign_block_vars('switch_edit_profile', array());
}
***************
*** 909,913 ****
if ( $userdata['user_allowavatar'] && ( $board_config['allow_avatar_upload'] || $board_config['allow_avatar_local'] || $board_config['allow_avatar_remote'] ) )
{
! $template->assign_block_vars('avatar_block', array() );
if ( $board_config['allow_avatar_upload'] && file_exists('./' . $board_config['avatar_path']) )
--- 896,900 ----
if ( $userdata['user_allowavatar'] && ( $board_config['allow_avatar_upload'] || $board_config['allow_avatar_local'] || $board_config['allow_avatar_remote'] ) )
{
! $template->assign_block_vars('switch_avatar_block', array() );
if ( $board_config['allow_avatar_upload'] && file_exists('./' . $board_config['avatar_path']) )
***************
*** 915,931 ****
if ( $form_enctype != '' )
{
! $template->assign_block_vars('avatar_block.avatar_local_upload', array() );
}
! $template->assign_block_vars('avatar_block.avatar_remote_upload', array() );
}
if ( $board_config['allow_avatar_remote'] )
{
! $template->assign_block_vars('avatar_block.avatar_remote_link', array() );
}
if ( $board_config['allow_avatar_local'] && file_exists('./' . $board_config['avatar_gallery_path']) )
{
! $template->assign_block_vars('avatar_block.avatar_local_gallery', array() );
}
}
--- 902,918 ----
if ( $form_enctype != '' )
{
! $template->assign_block_vars('switch_avatar_block.switch_avatar_local_upload', array() );
}
! $template->assign_block_vars('switch_avatar_block.switch_avatar_remote_upload', array() );
}
if ( $board_config['allow_avatar_remote'] )
{
! $template->assign_block_vars('switch_avatar_block.switch_avatar_remote_link', array() );
}
if ( $board_config['allow_avatar_local'] && file_exists('./' . $board_config['avatar_gallery_path']) )
{
! $template->assign_block_vars('switch_avatar_block.switch_avatar_local_gallery', array() );
}
}
***************
*** 936,938 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
--- 923,925 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
Index: usercp_sendpasswd.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_sendpasswd.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** usercp_sendpasswd.php 19 Mar 2002 20:47:59 -0000 1.4
--- usercp_sendpasswd.php 31 Mar 2002 00:06:34 -0000 1.5
***************
*** 24,28 ****
if ( !defined('IN_PHPBB') )
{
! die("Hacking attempt");
exit;
}
--- 24,28 ----
if ( !defined('IN_PHPBB') )
{
! die('Hacking attempt');
exit;
}
***************
*** 30,35 ****
if ( isset($HTTP_POST_VARS['submit']) )
{
! $username = ( !empty($HTTP_POST_VARS['username']) ) ? trim(strip_tags($HTTP_POST_VARS['username'])) : "";
! $email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars($HTTP_POST_VARS['email']))) : "";
$sql = "SELECT user_id, username, user_email, user_active, user_lang
--- 30,35 ----
if ( isset($HTTP_POST_VARS['submit']) )
{
! $username = ( !empty($HTTP_POST_VARS['username']) ) ? trim(strip_tags($HTTP_POST_VARS['username'])) : '';
! $email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars($HTTP_POST_VARS['email']))) : '';
$sql = "SELECT user_id, username, user_email, user_active, user_lang
***************
*** 41,45 ****
if ( $row = $db->sql_fetchrow($result) )
{
! if ( $row['user_active'] == 0 )
{
message_die(GENERAL_MESSAGE, $lang['No_send_account_inactive']);
--- 41,45 ----
if ( $row = $db->sql_fetchrow($result) )
{
! if ( !$row['user_active'] )
{
message_die(GENERAL_MESSAGE, $lang['No_send_account_inactive']);
***************
*** 54,60 ****
SET user_newpasswd = '" .md5($user_password) . "', user_actkey = '$user_actkey'
WHERE user_id = " . $row['user_id'];
! if ( !$result = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, "Couldn't update new password information", "", __LINE__, __FILE__, $sql);
}
--- 54,60 ----
SET user_newpasswd = '" .md5($user_password) . "', user_actkey = '$user_actkey'
WHERE user_id = " . $row['user_id'];
! if ( !$db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, 'Could not update new password information', '', __LINE__, __FILE__, $sql);
}
***************
*** 62,68 ****
$emailer = new emailer($board_config['smtp_delivery']);
! $email_headers = "From: " . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\r\n";
! $emailer->use_template("user_activate_passwd", $row['user_lang']);
$emailer->email_address($row['user_email']);
$emailer->set_subject();//$lang['New_password_activation']
--- 62,68 ----
$emailer = new emailer($board_config['smtp_delivery']);
! $email_headers = 'From: ' . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\r\n";
! $emailer->use_template('user_activate_passwd', $row['user_lang']);
$emailer->email_address($row['user_email']);
$emailer->set_subject();//$lang['New_password_activation']
***************
*** 70,79 ****
$emailer->assign_vars(array(
! "SITENAME" => $board_config['sitename'],
! "USERNAME" => $username,
! "PASSWORD" => $user_password,
! "EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_config['board_email_sig']),
! "U_ACTIVATE" => $server_url . "?mode=activate&act_key=$user_actkey")
);
$emailer->send();
--- 70,79 ----
$emailer->assign_vars(array(
! 'SITENAME' => $board_config['sitename'],
! 'USERNAME' => $username,
! 'PASSWORD' => $user_password,
! 'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $board_config['board_email_sig']),
! 'U_ACTIVATE' => $server_url . "?mode=activate&act_key=$user_actkey")
);
$emailer->send();
***************
*** 81,88 ****
$template->assign_vars(array(
! "META" => '<meta http-equiv="refresh" content="15;url=' . append_sid("index.$phpEx") . '">')
);
! $message = $lang['Password_updated'] . "<br /><br />" . sprintf($lang['Click_return_index'], "<a href=\"" . append_sid("index.$phpEx") . "\">", "</a>");
message_die(GENERAL_MESSAGE, $message);
--- 81,88 ----
$template->assign_vars(array(
! 'META' => '<meta http-equiv="refresh" content="15;url=' . append_sid("index.$phpEx") . '">')
);
! $message = $lang['Password_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
message_die(GENERAL_MESSAGE, $message);
***************
*** 95,105 ****
else
{
! message_die(GENERAL_ERROR, "Couldn't obtain user information for sendpassword", "", __LINE__, __FILE__, $sql);
}
}
else
{
! $username = "";
! $email = "";
}
--- 95,105 ----
else
{
! message_die(GENERAL_ERROR, 'Could not obtain user information for sendpassword', '', __LINE__, __FILE__, $sql);
}
}
else
{
! $username = '';
! $email = '';
}
***************
*** 110,141 ****
$template->set_filenames(array(
! "body" => "profile_send_pass.tpl",
! "jumpbox" => "jumpbox.tpl")
);
- $jumpbox = make_jumpbox();
$template->assign_vars(array(
! "L_GO" => $lang['Go'],
! "L_JUMP_TO" => $lang['Jump_to'],
! "L_SELECT_FORUM" => $lang['Select_forum'],
! "S_JUMPBOX_LIST" => $jumpbox,
! "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"))
);
- $template->assign_var_from_handle("JUMPBOX", "jumpbox");
! $template->assign_vars(array(
! "USERNAME" => $username,
! "EMAIL" => $email,
!
! "L_SEND_PASSWORD" => $lang['Send_password'],
! "L_ITEMS_REQUIRED" => $lang['Items_required'],
! "L_EMAIL_ADDRESS" => $lang['Email_address'],
! "L_SUBMIT" => $lang['Submit'],
! "L_RESET" => $lang['Reset'])
! );
!
! $template->pparse("body");
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
--- 110,131 ----
$template->set_filenames(array(
! 'body' => 'profile_send_pass.tpl')
);
+ make_jumpbox('viewforum.'.$phpEx);
$template->assign_vars(array(
! 'USERNAME' => $username,
! 'EMAIL' => $email,
! 'L_SEND_PASSWORD' => $lang['Send_password'],
! 'L_ITEMS_REQUIRED' => $lang['Items_required'],
! 'L_EMAIL_ADDRESS' => $lang['Email_address'],
! 'L_SUBMIT' => $lang['Submit'],
! 'L_RESET' => $lang['Reset'])
);
! $template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
!
! ?>
\ No newline at end of file
Index: usercp_viewprofile.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_viewprofile.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** usercp_viewprofile.php 25 Mar 2002 23:03:32 -0000 1.4
--- usercp_viewprofile.php 31 Mar 2002 00:06:34 -0000 1.5
***************
*** 52,69 ****
//
$template->set_filenames(array(
! 'body' => 'profile_view_body.tpl',
! 'jumpbox' => 'jumpbox.tpl')
);
!
! $jumpbox = make_jumpbox();
! $template->assign_vars(array(
! 'L_GO' => $lang['Go'],
! 'L_JUMP_TO' => $lang['Jump_to'],
! 'L_SELECT_FORUM' => $lang['Select_forum'],
!
! 'S_JUMPBOX_LIST' => $jumpbox,
! 'S_JUMPBOX_ACTION' => append_sid("viewforum.$phpEx"))
! );
! $template->assign_var_from_handle('JUMPBOX', 'jumpbox');
//
--- 52,58 ----
//
$template->set_filenames(array(
! 'body' => 'profile_view_body.tpl')
);
! make_jumpbox('viewforum.'.$phpEx);
//
***************
*** 86,102 ****
}
- if ( !empty($profiledata['user_viewemail']) || $userdata['user_level'] == ADMIN )
- {
- $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL . "=" . $profiledata['user_id']) : 'mailto:' . $profiledata['user_email'];
-
- $email = '<a href="' . $email_uri . '">' . $lang['Send_email'] . '</a>';
- $email_img = '<a href="' . $email_uri . '"><img src="' . $images['icon_email'] . '" alt="' . $lang['Send_email'] . '" border="0" /></a>';
- }
- else
- {
- $email = '';
- $email_img = '';
- }
-
$avatar_img = '';
if ( $profiledata['user_avatar_type'] && $profiledata['user_allowavatar'] )
--- 75,78 ----
***************
*** 141,167 ****
}
! if ( !empty($profiledata['user_icq']) )
{
! $icq_status_img = '<a href="http://wwp.icq.com/' . $profiledata['user_icq'] . '#pager"><img src="http://web.icq.com/whitepages/online?icq=' . $profiledata['user_icq'] . '&img=5" width="18" height="18" border="0" /></a>';
! $icq_add_img = '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $profiledata['user_icq'] . '"><img src="' . $images['icon_icq'] . '" alt="' . $lang['ICQ'] . '" border="0" /></a>';
}
else
{
! $icq_status_img = ' ';
! $icq_add_img = ' ';
}
! $aim_img = ( $profiledata['user_aim'] ) ? '<a href="aim:goim?screenname=' . $profiledata['user_aim'] . '&message=Hello+Are+you+there?"><img src="' . $images['icon_aim'] . '" border="0" alt="' . $lang['AIM'] . '" /></a>' : ' ';
! $msnm_img = ( $profiledata['user_msnm'] ) ? '<img src="' . $images['icon_msnm'] . '" border="0" alt="' . $lang['MSNM'] . '" /> ' . $profiledata['user_msnm'] : ' ';
! $yim_img = ( $profiledata['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&.src=pg"><img src="' . $images['icon_yim'] . '" border="0" alt="' . $lang['YIM'] . '" /></a>' : ' ';
! $search_img = '<a href="' . append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username']) . "&showresults=posts") . '"><img src="' . $images['icon_search'] . '" border="0" alt="' . $lang['Search_user_posts'] . '" /></a>';
! $search = '<a href="' . append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username']) . "&showresults=posts") . '">' . $lang['Search_user_posts'] . '</a>';
! $www_img = ( $profiledata['user_website'] ) ? '<a href="' . $profiledata['user_website'] . '"><img src="' . $images['icon_www'] . '" alt="' . $lang['Visit_website'] . '" border="0" /></a>' : ' ';
! $pm_img = '<a href="' . append_sid("privmsg.$phpEx?mode=post&" . POST_USERS_URL . "=" . $profiledata['user_id']) . '"><img src="' . $images['icon_pm'] . '" alt="' . $lang['Send_private_message'] . '" border="0" /></a>';
//
--- 117,165 ----
}
! $temp_url = append_sid("privmsg.$phpEx?mode=post&" . POST_USERS_URL . "=" . $profiledata['user_id']);
! $pm_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_pm'] . '" alt="' . $lang['Send_private_message']...
[truncated message content] |