aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn
diff options
context:
space:
mode:
authorPlareplane <Plareplane@web>2008-10-01 17:01:58 -0400
committerJoey Hess <joey@kitenet.net>2008-10-01 17:01:58 -0400
commit8e77b66aaee796a05109e78c67f647b924e17363 (patch)
tree76b74fccd4b2d2edb97a7799f8ca2f47e46d8a71 /doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn
parentf7431af308a9b36d1323ff380344cb3092786e19 (diff)
downloadikiwiki-8e77b66aaee796a05109e78c67f647b924e17363.tar
ikiwiki-8e77b66aaee796a05109e78c67f647b924e17363.tar.gz
Diffstat (limited to 'doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn')
-rw-r--r--doc/bugs/inline_from_field_empty_if_rootpage_doesn__39__t_exist.mdwn17
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?