mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ticket/11103
This commit is contained in:
commit
fc6457140c
9 changed files with 54 additions and 38 deletions
|
@ -53,6 +53,8 @@ class acp_board
|
||||||
'legend1' => 'ACP_BOARD_SETTINGS',
|
'legend1' => 'ACP_BOARD_SETTINGS',
|
||||||
'sitename' => array('lang' => 'SITE_NAME', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => false),
|
'sitename' => array('lang' => 'SITE_NAME', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => false),
|
||||||
'site_desc' => array('lang' => 'SITE_DESC', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => false),
|
'site_desc' => array('lang' => 'SITE_DESC', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => false),
|
||||||
|
'site_home_url' => array('lang' => 'SITE_HOME_URL', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => true),
|
||||||
|
'site_home_text' => array('lang' => 'SITE_HOME_TEXT', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => true),
|
||||||
'board_disable' => array('lang' => 'DISABLE_BOARD', 'validate' => 'bool', 'type' => 'custom', 'method' => 'board_disable', 'explain' => true),
|
'board_disable' => array('lang' => 'DISABLE_BOARD', 'validate' => 'bool', 'type' => 'custom', 'method' => 'board_disable', 'explain' => true),
|
||||||
'board_disable_msg' => false,
|
'board_disable_msg' => false,
|
||||||
'default_lang' => array('lang' => 'DEFAULT_LANGUAGE', 'validate' => 'lang', 'type' => 'select', 'function' => 'language_select', 'params' => array('{CONFIG_VALUE}'), 'explain' => false),
|
'default_lang' => array('lang' => 'DEFAULT_LANGUAGE', 'validate' => 'lang', 'type' => 'select', 'function' => 'language_select', 'params' => array('{CONFIG_VALUE}'), 'explain' => false),
|
||||||
|
|
|
@ -2112,7 +2112,7 @@ function phpbb_generate_template_pagination($template, $base_url, $block_var_nam
|
||||||
|
|
||||||
$on_page = floor($start_item / $per_page) + 1;
|
$on_page = floor($start_item / $per_page) + 1;
|
||||||
$url_delim = (strpos($base_url, '?') === false) ? '?' : ((strpos($base_url, '?') === strlen($base_url) - 1) ? '' : '&');
|
$url_delim = (strpos($base_url, '?') === false) ? '?' : ((strpos($base_url, '?') === strlen($base_url) - 1) ? '' : '&');
|
||||||
|
|
||||||
if ($reverse_count)
|
if ($reverse_count)
|
||||||
{
|
{
|
||||||
$start_page = ($total_pages > 5) ? $total_pages - 4 : 1;
|
$start_page = ($total_pages > 5) ? $total_pages - 4 : 1;
|
||||||
|
@ -2121,9 +2121,9 @@ function phpbb_generate_template_pagination($template, $base_url, $block_var_nam
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// What we're doing here is calculating what the "start" and "end" pages should be. We
|
// What we're doing here is calculating what the "start" and "end" pages should be. We
|
||||||
// do this by assuming pagination is "centered" around the currently active page with
|
// do this by assuming pagination is "centered" around the currently active page with
|
||||||
// the three previous and three next page links displayed. Anything more than that and
|
// the three previous and three next page links displayed. Anything more than that and
|
||||||
// we display the ellipsis, likewise anything less.
|
// we display the ellipsis, likewise anything less.
|
||||||
//
|
//
|
||||||
// $start_page is the page at which we start creating the list. When we have five or less
|
// $start_page is the page at which we start creating the list. When we have five or less
|
||||||
// pages we start at page 1 since there will be no ellipsis displayed. Anymore than that
|
// pages we start at page 1 since there will be no ellipsis displayed. Anymore than that
|
||||||
|
@ -2142,18 +2142,18 @@ function phpbb_generate_template_pagination($template, $base_url, $block_var_nam
|
||||||
if ($on_page != $total_pages)
|
if ($on_page != $total_pages)
|
||||||
{
|
{
|
||||||
$template->assign_block_vars($block_var_name, array(
|
$template->assign_block_vars($block_var_name, array(
|
||||||
'PAGE_NUMBER' => '',
|
'PAGE_NUMBER' => '',
|
||||||
'PAGE_URL' => $base_url . $url_delim . $start_name . '=' . ($on_page * $per_page),
|
'PAGE_URL' => $base_url . $url_delim . $start_name . '=' . ($on_page * $per_page),
|
||||||
'S_IS_CURRENT' => false,
|
'S_IS_CURRENT' => false,
|
||||||
'S_IS_PREV' => false,
|
'S_IS_PREV' => false,
|
||||||
'S_IS_NEXT' => true,
|
'S_IS_NEXT' => true,
|
||||||
'S_IS_ELLIPSIS' => false,
|
'S_IS_ELLIPSIS' => false,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
// This do...while exists purely to negate the need for start and end assign_block_vars, i.e.
|
// This do...while exists purely to negate the need for start and end assign_block_vars, i.e.
|
||||||
// to display the first and last page in the list plus any ellipsis. We use this loop to jump
|
// to display the first and last page in the list plus any ellipsis. We use this loop to jump
|
||||||
// around a little within the list depending on where we're starting (and ending).
|
// around a little within the list depending on where we're starting (and ending).
|
||||||
$at_page = 1;
|
$at_page = 1;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
@ -2164,17 +2164,17 @@ function phpbb_generate_template_pagination($template, $base_url, $block_var_nam
|
||||||
// of those points and of course do we even need to display it, i.e. is the list starting
|
// of those points and of course do we even need to display it, i.e. is the list starting
|
||||||
// on at least page 3 and ending three pages before the final item.
|
// on at least page 3 and ending three pages before the final item.
|
||||||
$template->assign_block_vars($block_var_name, array(
|
$template->assign_block_vars($block_var_name, array(
|
||||||
'PAGE_NUMBER' => $at_page,
|
'PAGE_NUMBER' => $at_page,
|
||||||
'PAGE_URL' => $page_url,
|
'PAGE_URL' => $page_url,
|
||||||
'S_IS_CURRENT' => (!$ignore_on_page && $at_page == $on_page),
|
'S_IS_CURRENT' => (!$ignore_on_page && $at_page == $on_page),
|
||||||
'S_IS_NEXT' => false,
|
'S_IS_NEXT' => false,
|
||||||
'S_IS_PREV' => false,
|
'S_IS_PREV' => false,
|
||||||
'S_IS_ELLIPSIS' => ($at_page == 2 && $start_page > 2) || ($at_page == $total_pages - 1 && $end_page < $total_pages - 1),
|
'S_IS_ELLIPSIS' => ($at_page == 2 && $start_page > 2) || ($at_page == $total_pages - 1 && $end_page < $total_pages - 1),
|
||||||
));
|
));
|
||||||
|
|
||||||
// We may need to jump around in the list depending on whether we have or need to display
|
// We may need to jump around in the list depending on whether we have or need to display
|
||||||
// the ellipsis. Are we on page 2 and are we more than one page away from the start
|
// the ellipsis. Are we on page 2 and are we more than one page away from the start
|
||||||
// of the list? Yes? Then we jump to the start of the list. Likewise are we at the end of
|
// of the list? Yes? Then we jump to the start of the list. Likewise are we at the end of
|
||||||
// the list and are there more than two pages left in total? Yes? Then jump to the penultimate
|
// the list and are there more than two pages left in total? Yes? Then jump to the penultimate
|
||||||
// page (so we can display the ellipsis next pass). Else, increment the counter and keep
|
// page (so we can display the ellipsis next pass). Else, increment the counter and keep
|
||||||
// going
|
// going
|
||||||
|
@ -2196,18 +2196,18 @@ function phpbb_generate_template_pagination($template, $base_url, $block_var_nam
|
||||||
if ($on_page != 1)
|
if ($on_page != 1)
|
||||||
{
|
{
|
||||||
$template->assign_block_vars($block_var_name, array(
|
$template->assign_block_vars($block_var_name, array(
|
||||||
'PAGE_NUMBER' => '',
|
'PAGE_NUMBER' => '',
|
||||||
'PAGE_URL' => $base_url . $url_delim . $start_name . '=' . (($on_page - 2) * $per_page),
|
'PAGE_URL' => $base_url . $url_delim . $start_name . '=' . (($on_page - 2) * $per_page),
|
||||||
'S_IS_CURRENT' => false,
|
'S_IS_CURRENT' => false,
|
||||||
'S_IS_PREV' => true,
|
'S_IS_PREV' => true,
|
||||||
'S_IS_NEXT' => false,
|
'S_IS_NEXT' => false,
|
||||||
'S_IS_ELLIPSIS' => false,
|
'S_IS_ELLIPSIS' => false,
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return current page
|
* Return current page
|
||||||
* This function also sets certain specific template variables
|
* This function also sets certain specific template variables
|
||||||
*
|
*
|
||||||
* @param object $template the template object
|
* @param object $template the template object
|
||||||
|
@ -2227,9 +2227,9 @@ function phpbb_on_page($template, $user, $base_url, $num_items, $per_page, $star
|
||||||
|
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
'PER_PAGE' => $per_page,
|
'PER_PAGE' => $per_page,
|
||||||
'ON_PAGE' => $on_page,
|
'ON_PAGE' => $on_page,
|
||||||
|
|
||||||
'A_BASE_URL' => addslashes($base_url),
|
'A_BASE_URL' => addslashes($base_url),
|
||||||
));
|
));
|
||||||
|
|
||||||
return sprintf($user->lang['PAGE_OF'], $on_page, max(ceil($num_items / $per_page), 1));
|
return sprintf($user->lang['PAGE_OF'], $on_page, max(ceil($num_items / $per_page), 1));
|
||||||
|
@ -3404,7 +3404,7 @@ function parse_cfg_file($filename, $lines = false)
|
||||||
|
|
||||||
$parsed_items[$key] = $value;
|
$parsed_items[$key] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($parsed_items['parent']) && isset($parsed_items['name']) && $parsed_items['parent'] == $parsed_items['name'])
|
if (isset($parsed_items['parent']) && isset($parsed_items['name']) && $parsed_items['parent'] == $parsed_items['name'])
|
||||||
{
|
{
|
||||||
unset($parsed_items['parent']);
|
unset($parsed_items['parent']);
|
||||||
|
@ -5030,6 +5030,7 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
|
||||||
|
|
||||||
'L_LOGIN_LOGOUT' => $l_login_logout,
|
'L_LOGIN_LOGOUT' => $l_login_logout,
|
||||||
'L_INDEX' => $user->lang['FORUM_INDEX'],
|
'L_INDEX' => $user->lang['FORUM_INDEX'],
|
||||||
|
'L_SITE_HOME' => ($config['site_home_text'] !== '') ? $config['site_home_text'] : $user->lang['HOME'],
|
||||||
'L_ONLINE_EXPLAIN' => $l_online_time,
|
'L_ONLINE_EXPLAIN' => $l_online_time,
|
||||||
|
|
||||||
'U_PRIVATEMSGS' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=pm&folder=inbox'),
|
'U_PRIVATEMSGS' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=pm&folder=inbox'),
|
||||||
|
@ -5041,6 +5042,7 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
|
||||||
'U_LOGIN_LOGOUT' => $u_login_logout,
|
'U_LOGIN_LOGOUT' => $u_login_logout,
|
||||||
'U_INDEX' => append_sid("{$phpbb_root_path}index.$phpEx"),
|
'U_INDEX' => append_sid("{$phpbb_root_path}index.$phpEx"),
|
||||||
'U_SEARCH' => append_sid("{$phpbb_root_path}search.$phpEx"),
|
'U_SEARCH' => append_sid("{$phpbb_root_path}search.$phpEx"),
|
||||||
|
'U_SITE_HOME' => $config['site_home_url'],
|
||||||
'U_REGISTER' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=register'),
|
'U_REGISTER' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=register'),
|
||||||
'U_PROFILE' => append_sid("{$phpbb_root_path}ucp.$phpEx"),
|
'U_PROFILE' => append_sid("{$phpbb_root_path}ucp.$phpEx"),
|
||||||
'U_MODCP' => append_sid("{$phpbb_root_path}mcp.$phpEx", false, true, $user->session_id),
|
'U_MODCP' => append_sid("{$phpbb_root_path}mcp.$phpEx", false, true, $user->session_id),
|
||||||
|
|
|
@ -2732,6 +2732,12 @@ function change_database_data(&$no_updates, $version)
|
||||||
// After we have calculated the timezones we can delete user_dst column from user table.
|
// After we have calculated the timezones we can delete user_dst column from user table.
|
||||||
$db_tools->sql_column_remove(USERS_TABLE, 'user_dst');
|
$db_tools->sql_column_remove(USERS_TABLE, 'user_dst');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isset($config['site_home_url']))
|
||||||
|
{
|
||||||
|
$config->set('site_home_url', '');
|
||||||
|
$config->set('site_home_text', '');
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -242,6 +242,8 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_protocol',
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_gc', '3600');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_gc', '3600');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_length', '3600');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_length', '3600');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc', '{L_CONFIG_SITE_DESC}');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc', '{L_CONFIG_SITE_DESC}');
|
||||||
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_home_url', '');
|
||||||
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_home_text', '');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename', '{L_CONFIG_SITENAME}');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename', '{L_CONFIG_SITENAME}');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_path', 'images/smilies');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_path', 'images/smilies');
|
||||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_per_page', '50');
|
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_per_page', '50');
|
||||||
|
|
|
@ -45,10 +45,14 @@ $lang = array_merge($lang, array(
|
||||||
'DISABLE_BOARD' => 'Disable board',
|
'DISABLE_BOARD' => 'Disable board',
|
||||||
'DISABLE_BOARD_EXPLAIN' => 'This will make the board unavailable to users. You can also enter a short (255 character) message to display if you wish.',
|
'DISABLE_BOARD_EXPLAIN' => 'This will make the board unavailable to users. You can also enter a short (255 character) message to display if you wish.',
|
||||||
'DISPLAY_LAST_SUBJECT' => 'Display subject of last added post on forum list',
|
'DISPLAY_LAST_SUBJECT' => 'Display subject of last added post on forum list',
|
||||||
'DISPLAY_LAST_SUBJECT_EXPLAIN' => 'The subject of the last added post will be displayed in the forum list with a hyperlink to the post. Subjects from password protected forums and forums in which user doesn’t have read access are not shown.',
|
'DISPLAY_LAST_SUBJECT_EXPLAIN' => 'The subject of the last added post will be displayed in the forum list with a hyperlink to the post. Subjects from password protected forums and forums in which user doesn’t have read access are not shown.',
|
||||||
'OVERRIDE_STYLE' => 'Override user style',
|
'OVERRIDE_STYLE' => 'Override user style',
|
||||||
'OVERRIDE_STYLE_EXPLAIN' => 'Replaces user’s style with the default.',
|
'OVERRIDE_STYLE_EXPLAIN' => 'Replaces user’s style with the default.',
|
||||||
'SITE_DESC' => 'Site description',
|
'SITE_DESC' => 'Site description',
|
||||||
|
'SITE_HOME_TEXT' => 'Main website text',
|
||||||
|
'SITE_HOME_TEXT_EXPLAIN' => 'This text will be displayed as a link to your website homepage in the board’s breadcrumbs. If not specified, it will default to “Home”.',
|
||||||
|
'SITE_HOME_URL' => 'Main website URL',
|
||||||
|
'SITE_HOME_URL_EXPLAIN' => 'If specified, a link to this URL will be prepended to your board’s breadcrumbs and the board logo will link to this URL instead of the forum index. An absolute URL is required, e.g. <samp>http://www.phpbb.com</samp>.',
|
||||||
'SITE_NAME' => 'Site name',
|
'SITE_NAME' => 'Site name',
|
||||||
'SYSTEM_TIMEZONE' => 'Guest timezone',
|
'SYSTEM_TIMEZONE' => 'Guest timezone',
|
||||||
'SYSTEM_TIMEZONE_EXPLAIN' => 'Timezone to use for displaying times to users who are not logged in (guests, bots). Logged in users set their timezone during registration and can change it in their user control panel.',
|
'SYSTEM_TIMEZONE_EXPLAIN' => 'Timezone to use for displaying times to users who are not logged in (guests, bots). Logged in users set their timezone during registration and can change it in their user control panel.',
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
|
|
||||||
<div class="navbar">
|
<div class="navbar">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
||||||
<ul class="linklist">
|
<ul class="linklist">
|
||||||
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
|
<li class="icon-home"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}">{L_SITE_HOME}</a> <strong>‹</strong> <!-- ENDIF --><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
|
||||||
<!-- IF not S_IS_BOT -->
|
<!-- IF not S_IS_BOT -->
|
||||||
<!-- IF U_WATCH_FORUM_LINK --><li <!-- IF S_WATCHING_FORUM -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{U_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}" data-ajax="toggle_link" data-toggle-class="icon-<!-- IF not S_WATCHING_FORUM -->unsubscribe<!-- ELSE -->subscribe<!-- ENDIF -->" data-toggle-text="{S_WATCH_FORUM_TOGGLE}" data-toggle-url="{U_WATCH_FORUM_TOGGLE}">{S_WATCH_FORUM_TITLE}</a></li><!-- ENDIF -->
|
<!-- IF U_WATCH_FORUM_LINK --><li <!-- IF S_WATCHING_FORUM -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{U_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}" data-ajax="toggle_link" data-toggle-class="icon-<!-- IF not S_WATCHING_FORUM -->unsubscribe<!-- ELSE -->subscribe<!-- ENDIF -->" data-toggle-text="{S_WATCH_FORUM_TOGGLE}" data-toggle-url="{U_WATCH_FORUM_TOGGLE}">{S_WATCH_FORUM_TITLE}</a></li><!-- ENDIF -->
|
||||||
<!-- IF U_WATCH_TOPIC --><li <!-- IF S_WATCHING_TOPIC -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{U_WATCH_TOPIC}" title="{S_WATCH_TOPIC_TITLE}" data-ajax="toggle_link" data-toggle-class="<!-- IF not S_WATCHING_TOPIC -->icon-unsubscribe<!-- ELSE -->icon-subscribe<!-- ENDIF -->" data-toggle-text="{S_WATCH_TOPIC_TOGGLE}" data-toggle-url="{U_WATCH_TOPIC_TOGGLE}">{S_WATCH_TOPIC_TITLE}</a></li><!-- ENDIF -->
|
<!-- IF U_WATCH_TOPIC --><li <!-- IF S_WATCHING_TOPIC -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{U_WATCH_TOPIC}" title="{S_WATCH_TOPIC_TITLE}" data-ajax="toggle_link" data-toggle-class="<!-- IF not S_WATCHING_TOPIC -->icon-unsubscribe<!-- ELSE -->icon-subscribe<!-- ENDIF -->" data-toggle-text="{S_WATCH_TOPIC_TOGGLE}" data-toggle-url="{U_WATCH_TOPIC_TOGGLE}">{S_WATCH_TOPIC_TITLE}</a></li><!-- ENDIF -->
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
||||||
<div id="site-description">
|
<div id="site-description">
|
||||||
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
|
<a href="<!-- IF U_SITE_HOME -->{U_SITE_HOME}<!-- ELSE -->{U_INDEX}<!-- ENDIF -->" title="<!-- IF U_SITE_HOME -->{L_SITE_HOME}<!-- ELSE -->{L_INDEX}<!-- ENDIF -->" id="logo">{SITE_LOGO_IMG}</a>
|
||||||
<h1>{SITENAME}</h1>
|
<h1>{SITENAME}</h1>
|
||||||
<p>{SITE_DESCRIPTION}</p>
|
<p>{SITE_DESCRIPTION}</p>
|
||||||
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
|
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
||||||
<ul class="linklist navlinks">
|
<ul class="linklist navlinks">
|
||||||
<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>‹</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li>
|
<li class="icon-home"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}">{L_SITE_HOME}</a> <strong>‹</strong> <!-- ENDIF --><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>‹</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li>
|
||||||
|
|
||||||
<!-- IF U_EMAIL_TOPIC --><li class="rightside"><a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}" class="sendemail">{L_EMAIL_TOPIC}</a></li><!-- ENDIF -->
|
<!-- IF U_EMAIL_TOPIC --><li class="rightside"><a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}" class="sendemail">{L_EMAIL_TOPIC}</a></li><!-- ENDIF -->
|
||||||
<!-- IF U_EMAIL_PM --><li class="rightside"><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}" class="sendemail">{L_EMAIL_PM}</a></li><!-- ENDIF -->
|
<!-- IF U_EMAIL_PM --><li class="rightside"><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}" class="sendemail">{L_EMAIL_PM}</a></li><!-- ENDIF -->
|
||||||
|
@ -181,4 +181,4 @@
|
||||||
<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
|
<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<table class="tablebg" width="100%" cellspacing="1" cellpadding="0" style="margin-top: 5px;">
|
<table class="tablebg" width="100%" cellspacing="1" cellpadding="0" style="margin-top: 5px;">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1">
|
<td class="row1">
|
||||||
<p class="breadcrumbs"><a href="{U_INDEX}">{L_INDEX}</a><!-- BEGIN navlinks --> » <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></p>
|
<p class="breadcrumbs"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}">{L_SITE_HOME}</a> <strong>»</strong> <!-- ENDIF --><a href="{U_INDEX}">{L_INDEX}</a><!-- BEGIN navlinks --> » <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></p>
|
||||||
<p class="datetime">{S_TIMEZONE}</p>
|
<p class="datetime">{S_TIMEZONE}</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -79,7 +79,7 @@ function marklist(id, name, state)
|
||||||
}
|
}
|
||||||
|
|
||||||
var rb = parent.getElementsByTagName('input');
|
var rb = parent.getElementsByTagName('input');
|
||||||
|
|
||||||
for (var r = 0; r < rb.length; r++)
|
for (var r = 0; r < rb.length; r++)
|
||||||
{
|
{
|
||||||
if (rb[r].name.substr(0, name.length) == name)
|
if (rb[r].name.substr(0, name.length) == name)
|
||||||
|
@ -139,7 +139,7 @@ function marklist(id, name, state)
|
||||||
<div id="logodesc">
|
<div id="logodesc">
|
||||||
<table width="100%" cellspacing="0">
|
<table width="100%" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="{U_INDEX}" class="imageset">{SITE_LOGO_IMG}</a></td>
|
<td><a href="<!-- IF U_SITE_HOME -->{U_SITE_HOME}<!-- ELSE -->{U_INDEX}<!-- ENDIF -->" class="imageset">{SITE_LOGO_IMG}</a></td>
|
||||||
<td width="100%" align="center"><h1>{SITENAME}</h1><span class="gen">{SITE_DESCRIPTION}</span></td>
|
<td width="100%" align="center"><h1>{SITENAME}</h1><span class="gen">{SITE_DESCRIPTION}</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Add table
Reference in a new issue