diff options
Diffstat (limited to 'picture.php')
-rw-r--r-- | picture.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/picture.php b/picture.php index 220490238..d08a2779d 100644 --- a/picture.php +++ b/picture.php @@ -2,10 +2,10 @@ // +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | -// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net | +// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | branch : BSF (Best So Far) -// | file : $RCSfile$ +// | file : $Id$ // | last update : $Date$ // | last modifier : $Author$ // | revision : $Revision$ @@ -427,6 +427,7 @@ if ( isset( $_GET['slideshow'] ) and isset($page['next_item']) ) array('slideshow'=>$refresh) ); $redirect_msg = nl2br(l10n('redirect_msg')); + $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1); } $title_nb = ($page['current_rank'] + 1).'/'.$page['cat_nb_images']; @@ -447,6 +448,10 @@ if ($metadata_showable) { $url_metadata = add_url_params( $url_metadata, array('metadata'=>null) ); } + else + { + $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1); + } } $page['body_id'] = 'thePicturePage'; |