summaryrefslogtreecommitdiff
path: root/LedgerSMB/Template.pm
diff options
context:
space:
mode:
Diffstat (limited to 'LedgerSMB/Template.pm')
-rwxr-xr-xLedgerSMB/Template.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/LedgerSMB/Template.pm b/LedgerSMB/Template.pm
index e66bcfd9..59fc4d01 100755
--- a/LedgerSMB/Template.pm
+++ b/LedgerSMB/Template.pm
@@ -290,7 +290,7 @@ sub output {
$self->_email_output;
} elsif ('print' eq lc $method) {
$self->_lpr_output;
- } elsif (defined $self->{output} or $method = 'Screen') {
+ } elsif (defined $self->{output} or lc $method eq 'screen') {
$self->_http_output;
exit;
} elsif (defined $method) {
@@ -401,7 +401,7 @@ sub _lpr_output {
}
my $lpr = $LedgerSMB::Sysconfig::printer{$args->{media}};
- open(LPR, '|-', $lpr);
+ open (LPR, '|-', $lpr);
# Output is not defined here. In the future we should consider
# changing this to use the system command and hit the file as an arg.