summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-05-08 21:53:19 -0700
committerIvan Kohler <ivan@freeside.biz>2012-05-08 21:53:19 -0700
commit4541332ec8410303ebe630ce5fd37cf5bf8c6719 (patch)
tree3aef0e709f5636b15cff1f31e9e6cf00969a4c11 /FS
parentacd68a24195f6e2bd65d58833047256fafba6e13 (diff)
remove agent_svcid from cust_svc->label and instead put it explicity in customer package/service view & service search results, RT#17619
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_svc.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/FS/FS/cust_svc.pm b/FS/FS/cust_svc.pm
index 1ae46fb4a..ff8ba9f5c 100644
--- a/FS/FS/cust_svc.pm
+++ b/FS/FS/cust_svc.pm
@@ -439,12 +439,9 @@ sub svc_label_long { shift->_svc_label('label_long', @_); }
sub _svc_label {
my( $self, $method, $svc_x ) = ( shift, shift, shift );
- my $identifier = $svc_x->$method(@_);
- $identifier = '['.$self->agent_svcid.']'. $identifier if $self->agent_svcid;
-
(
$self->part_svc->svc,
- $identifier,
+ $svc_x->$method(@_),
$self->part_svc->svcdb,
$self->svcnum
);