bug 2772: remove "Home" from html title pages on index pages
git-svn-id: http://piwigo.org/svn/trunk@18637 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
1e6e762643
commit
7f75c131ed
6 changed files with 18 additions and 16 deletions
|
|
@ -182,10 +182,6 @@ $conf['links'] = array();
|
|||
// );
|
||||
$conf['random_index_redirect'] = array();
|
||||
|
||||
// reverse_home_title: if Piwigo is your home page for a better robot index
|
||||
// we recommend to set it true (Only index page will reverse its title)
|
||||
$conf['reverse_home_title'] = false;
|
||||
|
||||
// List of notes to display on all header page
|
||||
// example $conf['header_notes'] = array('Test', 'Hello');
|
||||
$conf['header_notes'] = array();
|
||||
|
|
|
|||
|
|
@ -48,10 +48,6 @@ $template->assign(
|
|||
isset($page['body_id']) ?
|
||||
$page['body_id'] : '',
|
||||
|
||||
'REVERSE' =>
|
||||
(isset($conf['reverse_home_title']) and $conf['reverse_home_title']) ?
|
||||
true : false,
|
||||
|
||||
'CONTENT_ENCODING' => get_pwg_charset(),
|
||||
'PAGE_TITLE' => strip_tags($title),
|
||||
|
||||
|
|
|
|||
|
|
@ -561,9 +561,22 @@ if (isset($page['title']))
|
|||
{
|
||||
if (!empty($page['title']))
|
||||
{
|
||||
$page['title'] = $conf['level_separator'].$page['title'];
|
||||
$page['section_title'] = '<a href="'.get_gallery_home_url().'">'.l10n('Home').'</a>'.$conf['level_separator'].$page['title'];
|
||||
}
|
||||
$page['title'] = '<a href="'.get_gallery_home_url().'">'.l10n('Home').'</a>'.$page['title'];
|
||||
else
|
||||
{
|
||||
if ('picture'==script_basename())
|
||||
{
|
||||
$used_title = l10n('Home');
|
||||
$used_link = duplicate_index_url(array('start'=>0));
|
||||
}
|
||||
else
|
||||
{
|
||||
$used_title = @$page['is_homepage'] ? $conf['gallery_title'] :l10n('Home');
|
||||
$used_link = get_gallery_home_url();
|
||||
}
|
||||
$page['section_title'] = $page['title'] = '<a href="'.$used_link.'">'.$used_title.'</a>';
|
||||
}
|
||||
}
|
||||
|
||||
// add meta robots noindex, nofollow to avoid unnecesary robot crawls
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue