Skip to content

Commit

Permalink
Merge pull request #888 from gnieark/gnieark
Browse files Browse the repository at this point in the history
webui: quote strings with slashes in dashboards index view
  • Loading branch information
fbergkemper committed Jul 21, 2021
2 parents 9981ab6 + 3c3e227 commit a89617a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -264,7 +264,7 @@ $this->headTitle($title);
}
else {
$('.running-jobs-container').empty();
$('.running-jobs-container').append('<?php echo $this->translate('There are no jobs running.'); ?>');
$('.running-jobs-container').append('<?php echo addslashes($this->translate('There are no jobs running.')); ?>');
}
},
error: function() {
Expand Down

0 comments on commit a89617a

Please sign in to comment.