summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-09-13 20:59:21 +0200
committerAndreas Gohr <andi@splitbrain.org>2006-09-13 20:59:21 +0200
commit48bb2420ddf7e5b7d7841508cf23ffb1e579334c (patch)
treef9d64e56401e41422c958c7abadb1b2232a4c13e /inc
parente687bd378d458147f7060a931268fb0ca5ffc109 (diff)
downloadrpg-48bb2420ddf7e5b7d7841508cf23ffb1e579334c.tar.gz
rpg-48bb2420ddf7e5b7d7841508cf23ffb1e579334c.tar.bz2
fix for missing quotation mark in tpl_metaheaders
darcs-hash:20060913185921-7ad00-8ee85b4a39944484d660c8a1d710bd548feac26b.gz
Diffstat (limited to 'inc')
-rw-r--r--inc/template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/template.php b/inc/template.php
index 7392b5413..b4d55bd91 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -213,7 +213,7 @@ function tpl_metaheaders($alt=true){
// keywords (explicit or implicit)
if($INFO['meta']['subject']){
- ptln('<meta name="keywords" content="'.hsc(join(',',$INFO['meta']['subject'])).' />',$it);
+ ptln('<meta name="keywords" content="'.hsc(join(',',$INFO['meta']['subject'])).'" />',$it);
}else{
ptln('<meta name="keywords" content="'.str_replace(':',',',$ID).'" />',$it);
}