summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-04-19 13:00:02 -0700
committerIvan Kohler <ivan@freeside.biz>2015-04-19 13:00:02 -0700
commit9d175e20ee5a1d2088352acdee356afa30db5028 (patch)
treed587434bf7894d4c98cc08ac8015c16a05f1481c
parent2d7cf9d3a071bc96cb1b186cecec167c9e3482a5 (diff)
fix &nbsp; display nit from legacy change history changes, RT#29311
-rw-r--r--httemplate/elements/change_history_common.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/elements/change_history_common.html b/httemplate/elements/change_history_common.html
index e56bd1d75..7d4bd1054 100644
--- a/httemplate/elements/change_history_common.html
+++ b/httemplate/elements/change_history_common.html
@@ -148,8 +148,8 @@ die "access deined"
my %action = (
'insert' => 'Insert', #'Create',
- 'replace_old' => 'Change&nbsp;from',
- 'replace_new' => 'Change&nbsp;to',
+ 'replace_old' => "Change\xA0from",
+ 'replace_new' => "Change\xA0to",
'delete' => 'Remove',
);