diff options
author | ivan <ivan> | 2011-01-27 00:37:52 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-01-27 00:37:52 +0000 |
commit | 3fafb034f6b3f6fbd6b81edf6337b29b9e8be86e (patch) | |
tree | 95fbc12a8a9e7e413bee8fcc3210f6aa09835683 | |
parent | 4dad3b184d9adbdc7899335206eb1f8c1295f0e0 (diff) |
fix svc_label_link...? how did this ever work? RT#11331
-rw-r--r-- | FS/FS/UI/Web.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm index cb740ee3b..029b02c6c 100644 --- a/FS/FS/UI/Web.pm +++ b/FS/FS/UI/Web.pm @@ -135,7 +135,8 @@ sub svc_link { sub svc_label_link { my($m, $part_svc, $cust_svc) = @_ or return ''; - svc_X_link( ($cust_svc->label)[1], @_ ); + my($svc, $label, $svcdb) = $cust_svc->label; + svc_X_link( $label, @_ ); } sub svc_X_link { |