summaryrefslogtreecommitdiff
path: root/httemplate/view
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2018-01-24 11:59:40 -0800
committerIvan Kohler <ivan@freeside.biz>2018-01-24 11:59:40 -0800
commitf3e7167443a72ca8136dfec7d67d8e5c8d648611 (patch)
tree63f13219528acf735c3184cf5b6b041100987e52 /httemplate/view
parentebd7d1be21224877db7dff9972d02aedc9b35cd6 (diff)
don't escape twice
Diffstat (limited to 'httemplate/view')
-rw-r--r--httemplate/view/prospect_main.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/httemplate/view/prospect_main.html b/httemplate/view/prospect_main.html
index 2fde797c6..f4dd4146f 100644
--- a/httemplate/view/prospect_main.html
+++ b/httemplate/view/prospect_main.html
@@ -108,8 +108,7 @@ my $prospect_main = qsearchs( {
});
die "Prospect not found!" unless $prospect_main;
-my $title = encode_entities($prospect_main->name);
-$title = mt("Prospect"). ": $title";
+my $title = mt("Prospect"). ': '. $prospect_main->name;
$title .= ' ('.mt('DISABLED').')'
if $prospect_main->disabled;