diff options
author | ivan <ivan> | 2007-03-21 23:07:14 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-03-21 23:07:14 +0000 |
commit | fce19eeca97b74dbc3706da931d6cdf4bf7f0337 (patch) | |
tree | d76eec5c0b26edbc42c8cfbc5dbd2bd2dbf65385 /FS | |
parent | fcba6b0d7945a63197096ffabebcdad2445544bb (diff) |
fix bug displaying additional debugging info when process returns no error_message
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index c60fc8345..d437db694 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -2799,7 +2799,7 @@ sub realtime_bop { "No additional debugging information available for $processor"; } - $perror .= "No error_message returned from $processor -- "; + $perror .= "No error_message returned from $processor -- ". ( ref($t_response) ? Dumper($t_response) : $t_response ); } |