summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-11-17 21:54:33 -0800
committerIvan Kohler <ivan@freeside.biz>2013-11-17 21:54:33 -0800
commitdc94d71c66bc1c6fb3211fc553283ce9bb050dbd (patch)
treecd5f5e046442fee46292ca2ac7758d7ffd8e3c5e /FS
parent0ef5486a7d1e3909d242d35792845783004a8344 (diff)
svc_cable label, RT#26013
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/svc_cable.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_cable.pm b/FS/FS/svc_cable.pm
index 4b4239389..5d281135b 100644
--- a/FS/FS/svc_cable.pm
+++ b/FS/FS/svc_cable.pm
@@ -128,7 +128,7 @@ sub label {
my @label = ();
push @label, 'MAC:'. $self->mac_addr_pretty
if $self->mac_addr;
- push @label, 'Serial#:'. $self->serialnum
+ push @label, 'Serial#'. $self->serialnum
if $self->serialnum;
return join(', ', @label);
}