Skip to content

Commit

Permalink
Parse the returned text to make sure HTML entities show correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
roland-d committed Nov 5, 2015
1 parent 7cc3c33 commit d8624d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation/template/js/installation.js
Expand Up @@ -305,7 +305,7 @@ var Installation = function(_container, _base) {
if (r) {
Joomla.replaceTokens(r.token);
if (r.error === false) {
$el.val(r.data.text);
$el.val($("<div/>").html(r.data.text).text());
$el.attr('onclick', '').unbind('click');
$el.attr('disabled', 'disabled');
// Stop keep alive requests
Expand Down

0 comments on commit d8624d3

Please sign in to comment.