summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
authorjayce <jayce>2007-10-10 20:52:12 +0000
committerjayce <jayce>2007-10-10 20:52:12 +0000
commit3914680ee7b8382f88082e65dbda57a6a7afa7d4 (patch)
tree1f7c33266c580b3e6e85ce03dd47887e115abfcb /FS/FS
parent0ae5bb70803aceb4378c7862782343f155c28590 (diff)
With this line missing, cust_event objects would not fully create (eventpart wasn't loading), causing the _X methods to fail on ->part_event. Only noticed when you retried events that had previously failed.
Diffstat (limited to 'FS/FS')
-rw-r--r--FS/FS/cust_main.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index bf827a3ed..1195083fc 100644
--- a/FS/FS/cust_main.pm
+++ b/FS/FS/cust_main.pm
@@ -2819,6 +2819,7 @@ sub retry_realtime {
my @cust_event = qsearchs({
'table' => 'cust_event',
+ 'select' => 'cust_event.*',
'addl_from' => "LEFT JOIN part_event USING ( eventpart ) $join",
'hashref' => { 'status' => 'done' },
'extra_sql' => " AND statustext IS NOT NULL AND statustext != '' ".