Bug 30984: (QA follow-up) Ternary formatting style

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit b3a0d75a40)

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
This commit is contained in:
Marcel de Rooy 2022-07-29 06:39:21 +00:00 committed by Lucas Gass
parent 5767add2cc
commit 1fe48f965c

View file

@ -90,10 +90,9 @@ sub logaction {
}
}
my $script =
$interface eq 'cron' ? basename($0)
: $interface eq 'commandline' ? basename($0)
: undef;
my $script = ( $interface eq 'cron' or $interface eq 'commandline' )
? basename($0)
: undef;
my $dbh = C4::Context->dbh;
my $sth=$dbh->prepare("Insert into action_logs (timestamp,user,module,action,object,info,interface,script) values (now(),?,?,?,?,?,?,?)");