diff options
author | ivan <ivan> | 2010-06-26 20:43:53 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-06-26 20:43:53 +0000 |
commit | af7807edab850e127231e866b317c98b6b09a2b3 (patch) | |
tree | 39681252697234b4ef7fcd5e294558573bd9ee4a /FS | |
parent | 40d935c8cd952be7b461405406d9d03f46775baf (diff) |
finding services correctly for RT#8712
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Maestro.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Maestro.pm b/FS/FS/Maestro.pm index 20dbad607..bb792856c 100644 --- a/FS/FS/Maestro.pm +++ b/FS/FS/Maestro.pm @@ -21,7 +21,7 @@ sub customer_status { ## my @cust_svc_pbx = - grep { my($n,$l,$t) = $_->label; $_->t eq 'svc_pbx' } + grep { my($n,$l,$t) = $_->label; $t eq 'svc_pbx' } @cust_svc; #i tried sofa king hard to explain to them why passing a custnum instead |