diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-03-04 11:03:32 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-03-04 11:03:32 -0800 |
commit | 9000d0d9daea14055bda2c28b3a33c5742930460 (patch) | |
tree | 67b8d2db7099433988292b5dfd7739c463286932 | |
parent | 4bf89bb80c79c6ad24ea64c43faa3568193daebb (diff) |
optimize location select (order package), RT#39822
-rw-r--r-- | FS/FS/cust_location.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_location.pm b/FS/FS/cust_location.pm index 9415cc77c..2b8a5c88d 100644 --- a/FS/FS/cust_location.pm +++ b/FS/FS/cust_location.pm @@ -660,7 +660,7 @@ May become the default at some point. sub location_label { my( $self, %opt ) = @_; - my $prefix = $self->label_prefix; + my $prefix = $self->label_prefix(%opt); $prefix .= ($opt{join_string} || ': ') if $prefix; $prefix = '' if $opt{'no_prefix'}; |