diff options
author | Jurgen <jurrehart@users.noreply.github.com> | 2014-07-29 10:01:27 +0200 |
---|---|---|
committer | Jurgen <jurrehart@users.noreply.github.com> | 2014-07-29 10:01:27 +0200 |
commit | 1fcaffa7efc29ea2239d34a92a265499caa36d65 (patch) | |
tree | cd99c95291d18563ecb8dafc691c895d7261c1d9 /inc | |
parent | 5aca1d54db0f056fec97a36487b09ebf0a864ed3 (diff) | |
download | rpg-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')
-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'])); |