diff options
author | ivan <ivan> | 2008-06-18 05:22:52 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-06-18 05:22:52 +0000 |
commit | 63f34c9c207f3925ce18658b72f4634fecaf9867 (patch) | |
tree | 63a5fb49ba8c17f7f5a24bd29507bc07d7425984 /FS | |
parent | 2fdd9e6e197a36adb9b0058d19007a1296dcd6dc (diff) |
%statuscolor is either a global or a my var, make up your mind
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 946495ceb..dfe254c89 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -5007,7 +5007,7 @@ Returns a hex triplet color string for this customer's status. =cut use vars qw(%statuscolor); -tie my %statuscolor, 'Tie::IxHash', +tie %statuscolor, 'Tie::IxHash', 'prospect' => '7e0079', #'000000', #black? naw, purple 'active' => '00CC00', #green 'inactive' => '0000CC', #blue |