[freeside-commits] branch FREESIDE_4_BRANCH updated. 109335becce5e3a1eede2628eac4f3b8a2de6efc
Ivan Kohler
ivan at freeside.biz
Wed Jan 24 11:59:46 PST 2018
The branch, FREESIDE_4_BRANCH has been updated
via 109335becce5e3a1eede2628eac4f3b8a2de6efc (commit)
from ef04c3f43abb71900f8c9b1e502389830ab2d63b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 109335becce5e3a1eede2628eac4f3b8a2de6efc
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Jan 24 11:59:44 2018 -0800
don't escape twice
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;
-----------------------------------------------------------------------
Summary of changes:
httemplate/view/prospect_main.html | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
More information about the freeside-commits
mailing list