]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn
(no commit message)
[ikiwiki.git] / doc / bugs / inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn
1 If I put something like the below in my index.mdwn
2
3     <<!inline pages="posts/* and !*/discussion" rootpage="posts" show="10">>
4
5 But posts doesn't exist, I get the following in index.html
6
7     <input type="hidden" name="do" value="blog" />
8     <input type="hidden" name="from" value="" />
9     <input type="hidden" name="subpage" value="1" />
10
11 When I create posts (touch posts.mdwn), I get the following in index.html
12
13     <input type="hidden" name="do" value="blog" />
14     <input type="hidden" name="from" value="posts" />
15     <input type="hidden" name="subpage" value="1" />
16
17 Bug?
18
19 > Yes, thanks for reminding me I need to do something about that... [[done]]
20 > --[[Joey]]