Skip to content

Commit

Permalink
Addresses #1560 character encoding problem in Aboutware.
Browse files Browse the repository at this point in the history
  • Loading branch information
moseshll committed Mar 6, 2018
1 parent a03a157 commit 6d98646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/monograph_catalog/_index_monograph.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ $(document).ready(function() {
<div role="tabpanel" class="tab-pane aboutware row" id="aboutware">
<div class="col-sm-12">
<!-- this assumes that the "aboutware" FileSet is an html doc -->
<%= @monograph_presenter.aboutware.file.content.html_safe %>
<%= @monograph_presenter.aboutware.file.content.force_encoding("UTF-8").html_safe %>
</div>
</div>
<% end %>
Expand Down

0 comments on commit 6d98646

Please sign in to comment.