summaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-03-12 10:35:25 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-03-12 10:35:25 -0400
commit51ee2a2eab5ae9a923393d7a9b4e5a08772ae54d (patch)
tree2205b8c198136c46dddc52f5bf0e4ccafe929a44 /IkiWiki
parentd02e350a69635c3d8e7c30cf51dc446936c6cbf1 (diff)
fix syntax error
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/meta.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm
index 8803747fb..8a9a5382b 100644
--- a/IkiWiki/Plugin/meta.pm
+++ b/IkiWiki/Plugin/meta.pm
@@ -149,9 +149,9 @@ sub preprocess (@) { #{{{
push @{$metaheaders{$page}}, '<link href="'.encode_entities($value).
'" rel="openid2.local_id" />';
}
- if (exists $params{xrds-location} && safeurl($params{xrds-location})) {
+ if (exists $params{"xrds-location"} && safeurl($params{"xrds-location"})) {
push @{$metaheaders{$page}}, '<meta http-equiv="X-XRDS-Location"'.
- 'content="'.encode_entities($params{xrds-location}).'" />';
+ 'content="'.encode_entities($params{"xrds-location"}).'" />';
}
}
elsif ($key eq 'redir') {