aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/newfile-test.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-17 22:05:15 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-17 22:05:15 +0000
commitbf2c7f2298840c4b7292114d60a0568a48d6abe0 (patch)
tree960fea817817ffccda9f536fd4e616c91ffd4029 /doc/bugs/newfile-test.mdwn
parent57606c79924d113779860254b7b39dbaae21d29c (diff)
downloadikiwiki-bf2c7f2298840c4b7292114d60a0568a48d6abe0.tar
ikiwiki-bf2c7f2298840c4b7292114d60a0568a48d6abe0.tar.gz
response
Diffstat (limited to 'doc/bugs/newfile-test.mdwn')
-rw-r--r--doc/bugs/newfile-test.mdwn5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/bugs/newfile-test.mdwn b/doc/bugs/newfile-test.mdwn
index b5e7428bd..29a09bfbf 100644
--- a/doc/bugs/newfile-test.mdwn
+++ b/doc/bugs/newfile-test.mdwn
@@ -6,4 +6,7 @@ The CGI tries to decide whether an user is trying to edit a new file or not with
Assume the script is called like this `http://example.com/ikiwiki.cgi?page=discussion&from=some-page&do=create`. The `if (exists $pagesources{$page}) {` test determines whether there's a file called `$config{srcdir}/discussion`. Most installs won't have a `$config{srcdir}/discussion` page, so this test will fail causing the else clause to be executed. In this case, the else clause results in `$file` being set to `discussion.mdwn`. Thus, on typical installs `value => ! -e "$config{srcdir}/$file",` always succeeds, which results in the expected behaviour, albeit for the wrong reasons. Similarly, the ` $form->field(name => "rcsinfo", value => rcs_prepedit($file)` line is also meaningless because `$file` isn't what we think it is.
-(To confirm that this wasn't just a result of my imagination, I created [[/discussion]] on this site; feel free to delete it now.) \ No newline at end of file
+(To confirm that this wasn't just a result of my imagination, I created [[/discussion]] on this site; feel free to delete it now.)
+
+> I always find bug reports more comprehansible if they describe actual
+> buggy behavior, which you've not done. Could you do so? Thanks. --[[Joey]]