[freeside-commits] branch FREESIDE_4_BRANCH updated. 3a440e369dce7dfeecafdb0ffebb36bbd1d2fd28

Ivan Kohler ivan at freeside.biz
Thu Aug 29 15:33:32 PDT 2019


The branch, FREESIDE_4_BRANCH has been updated
       via  3a440e369dce7dfeecafdb0ffebb36bbd1d2fd28 (commit)
      from  8fe68aec8f45a9fd5a74887ab6a03b900e79cd34 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 3a440e369dce7dfeecafdb0ffebb36bbd1d2fd28
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Thu Aug 29 15:32:58 2019 -0700

    use uniqueid if id is missing in v12, RT#83146

diff --git a/FS/bin/freeside-cdr-asterisk_sql b/FS/bin/freeside-cdr-asterisk_sql
index 3d9096cf8..97e475868 100755
--- a/FS/bin/freeside-cdr-asterisk_sql
+++ b/FS/bin/freeside-cdr-asterisk_sql
@@ -151,7 +151,7 @@ while ( my $row = $sth->fetchrow_hashref ) {
         @args = ( undef );
       } else {
         $usql .= ' uniqueid = ?';
-        @args = ( $row->{'uniqueid'} );
+        @args = ( undef, $row->{'uniqueid'} );
       }
     } else {
       $usql .= ' calldate = ? AND src = ? AND dst = ?';

-----------------------------------------------------------------------

Summary of changes:
 FS/bin/freeside-cdr-asterisk_sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




More information about the freeside-commits mailing list