summaryrefslogtreecommitdiffstats
path: root/quips.cgi
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-07-05 20:43:18 +0200
committerDylan William Hardison <dylan@hardison.net>2017-07-07 00:19:20 +0200
commit37722eca39874bb6abdcd120e3e458bd62dea62b (patch)
tree57a9a9970c00ec77baecab7e154ef7dfcef863fe /quips.cgi
parenta6f98de0d4e842351222b0173a1fff151da8738e (diff)
downloadbugzilla-37722eca39874bb6abdcd120e3e458bd62dea62b.tar.gz
bugzilla-37722eca39874bb6abdcd120e3e458bd62dea62b.tar.xz
Bug 1377933 - Remove trailing whitespace from all perl files
Diffstat (limited to 'quips.cgi')
-rwxr-xr-xquips.cgi16
1 files changed, 8 insertions, 8 deletions
diff --git a/quips.cgi b/quips.cgi
index be6983d84..6a91df05f 100755
--- a/quips.cgi
+++ b/quips.cgi
@@ -38,7 +38,7 @@ if ($action eq "show") {
my @quipids;
foreach my $quipref (@$quipsref) {
my ($quipid, $userid, $quip, $approved) = @$quipref;
- $quips->{$quipid} = {'userid' => $userid, 'quip' => $quip,
+ $quips->{$quipid} = {'userid' => $userid, 'quip' => $quip,
'approved' => $approved};
push(@quipids, $quipid);
}
@@ -62,7 +62,7 @@ if ($action eq "add") {
ThrowUserError("no_new_quips");
check_hash_token($token, ['create-quips']);
- # Add the quip
+ # Add the quip
# Upstreaming: https://bugzilla.mozilla.org/show_bug.cgi?id=621879
my $approved = (Bugzilla->params->{'quip_list_entry_control'} eq "open")
|| $user->in_group('bz_quip_moderators') || 0;
@@ -85,7 +85,7 @@ if ($action eq 'approve') {
check_hash_token($token, ['approve-quips']);
# Read in the entire quip list
my $quipsref = $dbh->selectall_arrayref("SELECT quipid, approved FROM quips");
-
+
my %quips;
foreach my $quipref (@$quipsref) {
my ($quipid, $approved) = @$quipref;
@@ -100,10 +100,10 @@ if ($action eq 'approve') {
my $quip = $cgi->param("quipid_$quipid") ? 1 : 0;
if(defined($cgi->param("defined_quipid_$quipid"))) {
if($quips{$quipid} != $quip) {
- if($quip) {
- push(@approved, $quipid);
- } else {
- push(@unapproved, $quipid);
+ if($quip) {
+ push(@approved, $quipid);
+ } else {
+ push(@unapproved, $quipid);
}
}
}
@@ -122,7 +122,7 @@ if ($action eq "delete") {
action => "delete",
object => "quips"});
my $quipid = $cgi->param("quipid");
- ThrowCodeError("need_quipid") unless $quipid =~ /(\d+)/;
+ ThrowCodeError("need_quipid") unless $quipid =~ /(\d+)/;
$quipid = $1;
check_hash_token($token, ['quips', $quipid]);