diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-03-12 10:35:25 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-03-12 10:35:25 -0400 |
commit | 51ee2a2eab5ae9a923393d7a9b4e5a08772ae54d (patch) | |
tree | 2205b8c198136c46dddc52f5bf0e4ccafe929a44 /IkiWiki | |
parent | d02e350a69635c3d8e7c30cf51dc446936c6cbf1 (diff) | |
download | ikiwiki-51ee2a2eab5ae9a923393d7a9b4e5a08772ae54d.tar ikiwiki-51ee2a2eab5ae9a923393d7a9b4e5a08772ae54d.tar.gz |
fix syntax error
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/meta.pm | 4 |
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') { |