diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-03-10 21:51:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-10 21:51:27 +0100 |
commit | 5ee20b480b45ff9c66b7de3e957f7d0b6ed19ddb (patch) | |
tree | 608ef78d22f8331f53426c6e3da0ffb5e5048a51 | |
parent | f4773047c225171ab3cd6f0a81f3bf59584b2e4d (diff) | |
download | bugzilla-5ee20b480b45ff9c66b7de3e957f7d0b6ed19ddb.tar.gz bugzilla-5ee20b480b45ff9c66b7de3e957f7d0b6ed19ddb.tar.xz |
no bug - fix typo
This wasn't deployed luckily.
-rw-r--r-- | Bugzilla/Logging.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Logging.pm b/Bugzilla/Logging.pm index b69ffa2e9..769485c86 100644 --- a/Bugzilla/Logging.pm +++ b/Bugzilla/Logging.pm @@ -17,7 +17,7 @@ use Bugzilla::Constants qw(bz_locations); use English qw(-no_match_vars $PROGRAM_NAME); sub is_interactive { - return exists $ENV{'SERVER_SOFTWARE'} ? 1 : 0; + return not exists $ENV{SERVER_SOFTWARE} } BEGIN { |