diff options
author | mark <mark> | 2011-11-10 21:00:02 +0000 |
---|---|---|
committer | mark <mark> | 2011-11-10 21:00:02 +0000 |
commit | cfbfa38f73888ee2c073ad7500c1fe147cde1c81 (patch) | |
tree | d324e1f4af91deb7d2d40f22fdb3ec8131de9da0 | |
parent | e932b43a69516f3485483001a397b33788cf8eb1 (diff) |
silence warning
-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); } |