diff options
author | martin f. krafft <madduck@madduck.net> | 2008-03-11 23:02:01 +0100 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-03-11 18:37:04 -0400 |
commit | d02e350a69635c3d8e7c30cf51dc446936c6cbf1 (patch) | |
tree | 1ad48e5028753e59adb454ecb2b428fbebf58685 | |
parent | cdf88c88216c75051e2e3cfc7844da4611e7c89b (diff) |
Correct meta.robots attribute value->content
This was a silly typo, sorry. <meta ...> takes an attribute content, not
value.
Signed-off-by: martin f. krafft <madduck@madduck.net>
-rw-r--r-- | IkiWiki/Plugin/meta.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm index 0c210b64d..8803747fb 100644 --- a/IkiWiki/Plugin/meta.pm +++ b/IkiWiki/Plugin/meta.pm @@ -203,7 +203,7 @@ sub preprocess (@) { #{{{ } elsif ($key eq 'robots') { push @{$metaheaders{$page}}, '<meta name="robots"'. - ' value="'.encode_entities($value).'" />'; + ' content="'.encode_entities($value).'" />'; } else { push @{$metaheaders{$page}}, scrub('<meta name="'.encode_entities($key). |