# HG changeset patch # User Steve Kemp # Date 1199396660 0 # Node ID 9f91d9377d1aef92ca830b3155e07e0efc1c693d # Parent 3f0bf6fe2825c3c8801f5ae464543b1ca2437a85 Whitespace cleanups diff -r 3f0bf6fe2825 -r 9f91d9377d1a cgi-bin/comments.cgi --- a/cgi-bin/comments.cgi Thu Jan 03 09:31:49 2008 +0000 +++ b/cgi-bin/comments.cgi Thu Jan 03 21:44:20 2008 +0000 @@ -46,7 +46,7 @@ # my $TO = 'weblog@steve.org.uk'; my $FROM = 'weblog@steve.org.uk'; -# + @@ -56,12 +56,13 @@ # Get the parameters from the request. # my $cgi = new CGI(); -my $name = $cgi->param('name') || undef; -my $mail = $cgi->param('mail') || undef; -my $body = $cgi->param('body') || undef; -my $id = $cgi->param('id') || undef; +my $name = $cgi->param('name') || undef; +my $mail = $cgi->param('mail') || undef; +my $body = $cgi->param('body') || undef; +my $id = $cgi->param('id') || undef; my $cap = $cgi->param('captcha') || undef; -my $ajax = $cgi->param( "ajax" ) || 0; +my $ajax = $cgi->param( "ajax" ) || 0; + # # If any are missing just redirect back to the blog homepage.