X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/d02e350a69635c3d8e7c30cf51dc446936c6cbf1..8d72885b47387721fec68a020ff0be6d6dd7a69b:/IkiWiki/Plugin/meta.pm?ds=sidebyside diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm index 8803747fb..0afe1c362 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') { @@ -186,7 +186,7 @@ sub preprocess (@) { #{{{ $value=encode_entities($value); } my $delay=int(exists $params{delay} ? $params{delay} : 0); - my $redir="<meta http-equiv=\"refresh\" content=\"$delay; URL=$value\">"; + my $redir="<meta http-equiv=\"refresh\" content=\"$delay; URL=$value\" />"; if (! $safe) { $redir=scrub($redir); }