diff options
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/UI/Web.pm | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm index 40abdc4a1..1cc539a9f 100644 --- a/FS/FS/UI/Web.pm +++ b/FS/FS/UI/Web.pm @@ -655,7 +655,9 @@ sub job_status {    }    #to_json(\@return);  #waiting on deb 5.0 for new JSON.pm? -  objToJson(\@return); +  #silence the warning though +  my $to_json = JSON->can('to_json') || JSON->can('objToJson'); +  &$to_json(\@return);  }  | 
