* Display CGI processing errors if present.

master
joey 2006-07-10 21:13:41 +00:00
parent dfcd4c299a
commit 50c21744ca
2 changed files with 9 additions and 2 deletions

View File

@ -534,7 +534,13 @@ sub cgi () { #{{{
my $do=$q->param('do');
if (! defined $do || ! length $do) {
error("\"do\" parameter missing");
my $error = $q->cgi_error;
if ($error) {
error("Request not processed: $error");
}
else {
error("\"do\" parameter missing");
}
}
# Things that do not need a session.

3
debian/changelog vendored
View File

@ -8,8 +8,9 @@ ikiwiki (1.9) UNRELEASED; urgency=low
original wiki syntax, CamelCase links and all.
* Support a w3mmode, which lets w3m run ikiwiki using its local CGI
support, to edit pages etc without a web server.
* Display CGI processing errors if present.
-- Joey Hess <joeyh@debian.org> Fri, 7 Jul 2006 14:11:50 -0400
-- Joey Hess <joeyh@debian.org> Mon, 10 Jul 2006 17:12:57 -0400
ikiwiki (1.8) unstable; urgency=low