summaryrefslogtreecommitdiff
path: root/httemplate/browse/reason.html
diff options
context:
space:
mode:
authorjeff <jeff>2007-12-04 18:19:08 +0000
committerjeff <jeff>2007-12-04 18:19:08 +0000
commit2c6b7c910668dc09dff9ec34b169a240850f16c0 (patch)
treeb0b9097ddab86f3ee59d95ec6d267b4514693d92 /httemplate/browse/reason.html
parentb15c501be0d1d1331758916ec3bb1b4aab3b78ef (diff)
change credit reasons from freetext to new reason/reason type system (#2777)
Diffstat (limited to 'httemplate/browse/reason.html')
-rw-r--r--httemplate/browse/reason.html10
1 files changed, 3 insertions, 7 deletions
diff --git a/httemplate/browse/reason.html b/httemplate/browse/reason.html
index b017f8f58..5df94b2f3 100644
--- a/httemplate/browse/reason.html
+++ b/httemplate/browse/reason.html
@@ -36,14 +36,10 @@ die "access denied"
$cgi->param('class') =~ /^(\w)$/ or die "illegal class";
my $class = $1;
-my %classmap = ( 'C' => 'cancel',
- 'S' => 'suspend',
- );
+my $classname = $FS::reason_type::class_name{$class};;
+my $classpurpose = $FS::reason_type::class_purpose{$class};;
-my $classname = $classmap{$class};
-
-my $html_init = ucfirst($classname) .
-" reasons explain why we $classname a package.<BR><BR>".
+my $html_init = ucfirst($classname). " reasons $classpurpose.<BR><BR>".
qq!<A HREF="${p}edit/reason.html?class=$class">!.
"<I>Add a $classname reason</I></A><BR><BR>";