diff options
-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? |