changeset 154:9f91d9377d1a

Whitespace cleanups
author Steve Kemp <steve@steve.org.uk>
date Thu, 03 Jan 2008 21:44:20 +0000
parents 3f0bf6fe2825
children 4d2f0d6866e5
files cgi-bin/comments.cgi
diffstat 1 files changed, 7 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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.