aboutsummaryrefslogtreecommitdiffstats
path: root/include/page_header.php
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2009-01-03 21:08:22 +0000
committervdigital <vdigital@piwigo.org>2009-01-03 21:08:22 +0000
commit9a0403c698033218f9e09c44e5ad313005e6fd6d (patch)
treeb5ddcdb85e08b61a208fa67297378812ad584c7d /include/page_header.php
parent72b2c126c4c73dc32fc57f43bc2b26069df99d87 (diff)
- $conf['meta_ref'] is a new configuration parameter (Default true)
Meta tags for description, author, and keywords are generated, except if meta robots "noindex" is forced (with some pages like search, recent cats, etc.). In addition, $conf['meta_ref'] = false is forcing "noindex, nofollow". merge -c3040 from branch 2.0 to trunk git-svn-id: http://piwigo.org/svn/trunk@3041 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/page_header.php')
-rw-r--r--include/page_header.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/page_header.php b/include/page_header.php
index 2fa509e86..ff9064978 100644
--- a/include/page_header.php
+++ b/include/page_header.php
@@ -56,6 +56,13 @@ if ( !empty($header_notes) )
$template->assign('header_notes',$header_notes);
}
+// No referencing is required
+if ( !$conf['meta_ref'] )
+{
+ $page['meta_robots']['noindex'] = 1;
+ $page['meta_robots']['nofollow'] = 1;
+}
+
if ( !empty($page['meta_robots']) )
{
$template->append('head_elements',
@@ -64,6 +71,10 @@ if ( !empty($page['meta_robots']) )
.'">'
);
}
+if ( !isset($page['meta_robots']['noindex']) )
+{
+ $template->assign('meta_ref',1);
+}
// refresh
if ( isset( $refresh ) and intval($refresh) >= 0