summaryrefslogtreecommitdiff
path: root/httemplate/browse/reason.html
diff options
context:
space:
mode:
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 94141eea3..49b452cf8 100644
--- a/httemplate/browse/reason.html
+++ b/httemplate/browse/reason.html
@@ -38,14 +38,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>";