diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-03-08 10:14:02 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-03-08 10:14:02 -0800 |
commit | d260dc2e4c5a9384449beb994382e29cf625061b (patch) | |
tree | 5b0368a419a6663d52ae479103326e168a5542ad /FS | |
parent | da5b18b44fd8f953832a9985602cdd69e81bafb0 (diff) |
quiet warning when running without ticket_system
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Cron/rt_tasks.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Cron/rt_tasks.pm b/FS/FS/Cron/rt_tasks.pm index fd2a718d7..01ea0b5dd 100644 --- a/FS/FS/Cron/rt_tasks.pm +++ b/FS/FS/Cron/rt_tasks.pm @@ -29,7 +29,7 @@ sub rt_daily { # RT_External installations should have their own cron scripts for this my $system = $FS::TicketSystem::system; - return if $system ne 'RT_Internal'; + return if !defined($system) || $system ne 'RT_Internal'; # if -d or -y is in use, bail out. There's no reliable way to tell RT # to use an alternate system time. |