diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-09-22 17:15:36 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-09-22 17:15:36 +0000 |
commit | d0b1b244281102a07f675880c401ca831ff113d4 (patch) | |
tree | 6f3e84f45284d9054327a90acaba99eafc4ccf04 /IkiWiki | |
parent | c1474d795c521c466dc997f6eb03b9a84eb1f73f (diff) | |
download | ikiwiki-d0b1b244281102a07f675880c401ca831ff113d4.tar ikiwiki-d0b1b244281102a07f675880c401ca831ff113d4.tar.gz |
fix html
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/map.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/map.pm b/IkiWiki/Plugin/map.pm index 97450eb6d..93ff3194a 100644 --- a/IkiWiki/Plugin/map.pm +++ b/IkiWiki/Plugin/map.pm @@ -92,7 +92,7 @@ sub preprocess (@) { #{{{ $p.="/".shift(@bits); $map .= "<li>" .htmllink($params{page}, $params{destpage}, $p, class => "mapparent") - ."</span>\n"; + ."\n"; $openli=1; } else { @@ -103,7 +103,7 @@ sub preprocess (@) { #{{{ $map .= "<li>" .htmllink($params{page}, $params{destpage}, "/".$common_prefix."/".$item, class => "mapitem") - ."</span>\n"; + ."\n"; $openli=1; $parent=$item; } |