Bug 10577: (QA follow-up) Remove tab chars
authorJosef Moravec <josef.moravec@gmail.com>
Wed, 27 Mar 2019 16:04:13 +0000 (16:04 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Thu, 28 Mar 2019 12:46:14 +0000 (12:46 +0000)
Signed-off-by: Josef Moravec <josef.moravec@gmail.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

C4/Budgets.pm

index 493e2b7..dfd442f 100644 (file)
@@ -440,15 +440,15 @@ sub GetBudgetPeriods {
 }
 # -------------------------------------------------------------------
 sub GetBudgetPeriod {
-       my ($budget_period_id) = @_;
-       my $dbh = C4::Context->dbh;
-       my $sth = $dbh->prepare( qq|
+    my ($budget_period_id) = @_;
+    my $dbh = C4::Context->dbh;
+    my $sth = $dbh->prepare( qq|
         SELECT      *
         FROM aqbudgetperiods
         WHERE budget_period_id=? |
-       );
-       $sth->execute($budget_period_id);
-       return $sth->fetchrow_hashref;
+    );
+    $sth->execute($budget_period_id);
+    return $sth->fetchrow_hashref;
 }
 
 sub DelBudgetPeriod{