diff options
author | jeff <jeff> | 2007-12-04 18:20:58 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-12-04 18:20:58 +0000 |
commit | e8a09e945986a32f9b7d0a5d546142ada91654ca (patch) | |
tree | e0439507bc510ae41ef9b02c0b34bef3a9313863 /httemplate/edit/reason.html | |
parent | b8a41c45daf3e4cfa21200f5d9e59e38bd41293c (diff) |
change credit reasons from freetext to new reason/reason type system (#2777)
Diffstat (limited to 'httemplate/edit/reason.html')
-rw-r--r-- | httemplate/edit/reason.html | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/httemplate/edit/reason.html b/httemplate/edit/reason.html index c652a0820..512013ace 100644 --- a/httemplate/edit/reason.html +++ b/httemplate/edit/reason.html @@ -2,10 +2,7 @@ % $cgi->param('class') =~ /^(\w)$/ or die "illegal class"; % my $class=$1; % -% my %classmap = ('C' => 'cancel', -% 'S' => 'suspend', -% ); -% my $classname = $classmap{$class}; +% my $classname = $FS::reason_type::class_name{$class}; % % my (@types) = qsearch( 'reason_type', { 'class' => $class } ); % |