mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-01 20:04:51 +02:00
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:
@@ -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
|
||||
|
||||
@@ -111,7 +111,7 @@ $page['body_id'] = 'theCategoryPage';
|
||||
|
||||
$template->set_filenames( array('index'=>'index.tpl') );
|
||||
//-------------------------------------------------------------- category title
|
||||
$template_title = $page['title'];
|
||||
$template_title = $page['section_title'];
|
||||
if (count($page['items']) > 0)
|
||||
{
|
||||
$template_title.= ' ['.count($page['items']).']';
|
||||
|
||||
+1
-1
@@ -736,7 +736,7 @@ elseif ($conf['picture_slideshow_icon'])
|
||||
|
||||
$template->assign(
|
||||
array(
|
||||
'SECTION_TITLE' => $page['title'],
|
||||
'SECTION_TITLE' => $page['section_title'],
|
||||
'PHOTO' => $title_nb,
|
||||
'IS_HOME' => ('categories'==$page['section'] and !isset($page['category']) ),
|
||||
|
||||
|
||||
@@ -16,10 +16,7 @@
|
||||
<meta name="description" content="{$PAGE_TITLE}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}">
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
{if (isset($REVERSE) and $REVERSE and $PAGE_TITLE == l10n('Home'))}
|
||||
<title>{$GALLERY_TITLE} | {$PAGE_TITLE}</title>{else}
|
||||
<title>{$PAGE_TITLE} | {$GALLERY_TITLE}</title>{/if}
|
||||
<title>{$PAGE_TITLE}{if $PAGE_TITLE!=$GALLERY_TITLE} | {$GALLERY_TITLE}{/if}</title>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}{$themeconf.icon_dir}/favicon.ico">
|
||||
|
||||
<link rel="start" title="{'Home'|@translate}" href="{$U_HOME}" >
|
||||
|
||||
Reference in New Issue
Block a user