summaryrefslogtreecommitdiff
path: root/inc/template.php
diff options
context:
space:
mode:
authorJurgen <jurrehart@users.noreply.github.com>2014-07-29 10:01:27 +0200
committerJurgen <jurrehart@users.noreply.github.com>2014-07-29 10:01:27 +0200
commit1fcaffa7efc29ea2239d34a92a265499caa36d65 (patch)
treecd99c95291d18563ecb8dafc691c895d7261c1d9 /inc/template.php
parent5aca1d54db0f056fec97a36487b09ebf0a864ed3 (diff)
downloadrpg-1fcaffa7efc29ea2239d34a92a265499caa36d65.tar.gz
rpg-1fcaffa7efc29ea2239d34a92a265499caa36d65.tar.bz2
Update template.php
Removed creation of <meta name="date" as suggested in issue #740 thread
Diffstat (limited to 'inc/template.php')
-rw-r--r--inc/template.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/inc/template.php b/inc/template.php
index c02c9f1ae..8b39529c5 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -381,13 +381,6 @@ function tpl_metaheaders($alt = true) {
// set metadata
if($ACT == 'show' || $ACT == 'export_xhtml') {
- // date of modification
- if($REV) {
- $head['meta'][] = array('name'=> 'date', 'content'=> date('Y-m-d\TH:i:sO', $REV));
- } else {
- $head['meta'][] = array('name'=> 'date', 'content'=> date('Y-m-d\TH:i:sO', $INFO['lastmod']));
- }
-
// keywords (explicit or implicit)
if(!empty($INFO['meta']['subject'])) {
$head['meta'][] = array('name'=> 'keywords', 'content'=> join(',', $INFO['meta']['subject']));