summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2007-03-21 23:07:17 +0000
committerivan <ivan>2007-03-21 23:07:17 +0000
commit0b232b2364bb0dbeafbecc19c3be45a2d1eedd9a (patch)
treec55328da762620d2283ff5c4a539c62885fef541 /FS
parentb5b38685b6e3aef244d781e8534f03e32d151000 (diff)
fix bug displaying additional debugging info when process returns no error_message
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_main.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index 1492f7f2c..7f8602e4a 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 );
}