[freeside-commits] branch master updated. 4d763392708ffaaf2fbd43e9b9a22ef943295919

Ivan Kohler ivan at freeside.biz
Wed Apr 24 14:49:15 PDT 2019


The branch, master has been updated
       via  4d763392708ffaaf2fbd43e9b9a22ef943295919 (commit)
      from  b41ff1359baf325376d41d8c1378e187a208cc8d (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 4d763392708ffaaf2fbd43e9b9a22ef943295919
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Apr 24 14:49:14 2019 -0700

    fix northern-911 and other unsuspend operations when exports override export_replace, RT#83178

diff --git a/FS/FS/part_export.pm b/FS/FS/part_export.pm
index 1a8f43de1..96fb85fc3 100644
--- a/FS/FS/part_export.pm
+++ b/FS/FS/part_export.pm
@@ -666,7 +666,7 @@ sub _export_suspend {
   #warn "warning: _export_suspened unimplemented for". ref($self);
   my $svc_x = shift;
   my $new = $svc_x->clone_suspended;
-  $self->_export_replace( $new, $svc_x );
+  $self->export_replace( $new, $svc_x );
 }
 
 sub _export_unsuspend {
@@ -674,7 +674,7 @@ sub _export_unsuspend {
   #warn "warning: _export_unsuspend unimplemented for ". ref($self);
   my $svc_x = shift;
   my $old = $svc_x->clone_kludge_unsuspend;
-  $self->_export_replace( $svc_x, $old );
+  $self->export_replace( $svc_x, $old );
 }
 
 =item get_remoteid SVC

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

Summary of changes:
 FS/FS/part_export.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)




More information about the freeside-commits mailing list