diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-10-01 17:24:50 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-10-01 17:24:50 -0400 |
commit | f2b1a918b022863c6baf010bee3e57b5f08a794f (patch) | |
tree | 8987054d8e7872446e637b17a24707e1f09b8160 | |
parent | 06de9da609bb79438729c686ca5721d0415b4894 (diff) | |
parent | 8e77b66aaee796a05109e78c67f647b924e17363 (diff) | |
download | ikiwiki-f2b1a918b022863c6baf010bee3e57b5f08a794f.tar ikiwiki-f2b1a918b022863c6baf010bee3e57b5f08a794f.tar.gz |
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
-rw-r--r-- | doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn b/doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn new file mode 100644 index 000000000..995f0836f --- /dev/null +++ b/doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn @@ -0,0 +1,17 @@ +If I put something like the below in my index.mdwn + + <<!inline pages="posts/* and !*/discussion" rootpage="posts" show="10">> + +But posts doesn't exist, I get the following in index.html + + <input type="hidden" name="do" value="blog" /> + <input type="hidden" name="from" value="" /> + <input type="hidden" name="subpage" value="1" /> + +When I create posts (touch posts.mdwn), I get the following in index.html + + <input type="hidden" name="do" value="blog" /> + <input type="hidden" name="from" value="posts" /> + <input type="hidden" name="subpage" value="1" /> + +Bug? |