diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-07-29 20:39:22 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-07-29 20:39:22 +0200 |
commit | 0c309a8975ca5a541386f0477b9f34b7edb1dc1f (patch) | |
tree | 4f459aa37ab9c2e7422f9cda5b92d92de6b542ee | |
parent | 8e75064cccfafdb900bb00797385f03d79d41d81 (diff) | |
parent | 1fcaffa7efc29ea2239d34a92a265499caa36d65 (diff) | |
download | rpg-0c309a8975ca5a541386f0477b9f34b7edb1dc1f.tar.gz rpg-0c309a8975ca5a541386f0477b9f34b7edb1dc1f.tar.bz2 |
Merge pull request #818 from jurrehart/issue#740
Issue #740 quick simple fix
-rw-r--r-- | inc/template.php | 7 |
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'])); |