From 50c21744cac9842b75bfafd776b3dc4c38370b03 Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 10 Jul 2006 21:13:41 +0000 Subject: [PATCH] * Display CGI processing errors if present. --- IkiWiki/CGI.pm | 8 +++++++- debian/changelog | 3 ++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm index 671f0b924..53e151dc2 100644 --- a/IkiWiki/CGI.pm +++ b/IkiWiki/CGI.pm @@ -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. diff --git a/debian/changelog b/debian/changelog index 359ea1c13..b2f037e2f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Fri, 7 Jul 2006 14:11:50 -0400 + -- Joey Hess Mon, 10 Jul 2006 17:12:57 -0400 ikiwiki (1.8) unstable; urgency=low -- 2.32.0.93.g670b81a890