summaryrefslogtreecommitdiff
path: root/FS/FS/cust_svc.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-05-08 21:53:17 -0700
committerIvan Kohler <ivan@freeside.biz>2012-05-08 21:53:17 -0700
commitad434319858f0cf862498538ad17123ee61be1b4 (patch)
tree061de70b2a9a6dc45b89972cdcee80a946778043 /FS/FS/cust_svc.pm
parente4e9e2f1fe6f48cf22486962c6bf84f50d201358 (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/FS/cust_svc.pm')
-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 604c654..2ec8f12 100644
--- a/FS/FS/cust_svc.pm
+++ b/FS/FS/cust_svc.pm
@@ -461,12 +461,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
);