summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2015-03-13 14:22:54 -0500
committerJonathan Prykop <jonathan@freeside.biz>2015-03-13 14:22:54 -0500
commit95ec0ba6b56057953de04c6758cfce6d0a8d5fde (patch)
tree7ee049b94e11c92e4e25357b96e53f34f98aa872
parentd96e926b315be0791d0383cc3827295bc3a81a40 (diff)
RT#33877: Customer Status [fix only needed for 3_BRANCH]
-rw-r--r--httemplate/view/cust_main/misc.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/misc.html b/httemplate/view/cust_main/misc.html
index fe0e329c3..b085b550a 100644
--- a/httemplate/view/cust_main/misc.html
+++ b/httemplate/view/cust_main/misc.html
@@ -204,7 +204,7 @@ my $curuser = $FS::CurrentUser::CurrentUser;
my @agentnums = $curuser->agentnums;
-my $status_label = $cust_main->status_label;
+my $status_label = ucfirst($cust_main->status);
if ($cust_main->is_status_delay_cancel) {
$status_label .= ' (Cancelled)';
}