diff options
| author | ivan <ivan> | 2008-02-19 03:17:41 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2008-02-19 03:17:41 +0000 | 
| commit | 9f676c582af6fa384273290713b9d163badc1eaf (patch) | |
| tree | bde16106468b3ca7434b8d34b993c411fc7161c0 /FS | |
| parent | e37ee3384655dd27d12a531ce5fa48c109d09f6d (diff) | |
return svc_external id and title as label instead of svcnum
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/svc_external.pm | 3 | 
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;    }  } | 
