mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-25 10:49:58 +03:00
fixes #698 change condition to add meta tag
we only want the meta tag when the exif data is displayed using the url parameter, this avoids the no index no follow for some themes that force displaying metadata
This commit is contained in:
parent
b12575566a
commit
36c889b33a
1 changed files with 1 additions and 3 deletions
|
@ -606,7 +606,7 @@ $metadata_showable = trigger_change(
|
|||
$picture['current']
|
||||
);
|
||||
|
||||
if ( $metadata_showable and pwg_get_session_var('show_metadata') )
|
||||
if ( isset($_GET['metadata']) )
|
||||
{
|
||||
$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
|
||||
}
|
||||
|
@ -676,12 +676,10 @@ SELECT *
|
|||
|
||||
$format['filesize'] = sprintf('%.1fMB', $format['filesize']/1024);
|
||||
}
|
||||
|
||||
$template->append('current', array('formats' => $formats), true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ($page['slideshow'])
|
||||
{
|
||||
$tpl_slideshow = array();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue