]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/map_fails_to_close_ul_element_for_empty_list.mdwn
added web file rename when using svn bug
[ikiwiki.git] / doc / bugs / map_fails_to_close_ul_element_for_empty_list.mdwn
1 input:
2
3     before.
4     \[[!map pages="sdfsdfsdfsd/*"]]
5     after.
6
7 Presuming that the pagespec does not match, output:
8
9     <p>before.
10     <div class="map">
11     <ul>
12     </div></p>
13
14 The UL element is not closed.
15
16 Patch[[!tag patch]]:
17
18     --- /usr/share/perl5/IkiWiki/Plugin/map.pm  2009-05-06 00:56:55.000000000 +0100
19     +++ IkiWiki/Plugin/map.pm   2009-06-15 12:23:54.000000000 +0100
20     @@ -137,11 +137,11 @@
21             $openli=1;
22             $parent=$item;
23         }
24     -   while ($indent > 0) {
25     +   while ($indent > 1) {
26             $indent--;
27             $map .= "</li>\n</ul>\n";
28         }
29     -   $map .= "</div>\n";
30     +   $map .= "</ul>\n</div>\n";
31         return $map;
32      }
33      
34
35 -- [[Jon]]