summaryrefslogtreecommitdiff
path: root/FS/FS/svc_external.pm
diff options
context:
space:
mode:
authorivan <ivan>2008-02-19 03:17:42 +0000
committerivan <ivan>2008-02-19 03:17:42 +0000
commit995e6ac8c97475ca84c9b14041c557f7c04ba4e2 (patch)
tree3543cd79be3020f3b5fa7ef045ca6e630755a074 /FS/FS/svc_external.pm
parent0d8d3c18d28cdf9347cd8f48c3e36fd616d9eac7 (diff)
return svc_external id and title as label instead of svcnum
Diffstat (limited to 'FS/FS/svc_external.pm')
-rw-r--r--FS/FS/svc_external.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/svc_external.pm b/FS/FS/svc_external.pm
index f4911aa63..45b4ef953 100644
--- a/FS/FS/svc_external.pm
+++ b/FS/FS/svc_external.pm
@@ -85,7 +85,8 @@ sub label {
sprintf('%010d', $self->id). '-'.
substr('0000000000'.uc($self->title), -10);
} else {
- $self->SUPER::label;
+ #$self->SUPER::label;
+ $self->id. ' - '. $self->title;
}
}