mirror of
https://github.com/iv-org/invidious.git
synced 2026-09-06 00:52:45 -05:00
Escape warning messages for disabled comments
This commit is contained in:
parent
00d1a8b967
commit
facda9a51e
@ -300,7 +300,7 @@ we're going to need to do it here in order to allow for translations.
|
||||
<div id="comments" class="comments">
|
||||
<% if (params.comments <=> ["", ""]) == 0 %>
|
||||
<div id="comments-disabled-message" class="h-box v-box">
|
||||
<p><b><%= I18n.translate(locale, "invidious_comments_disabled_text") %></b></p>
|
||||
<p><b><%= HTML.escape(I18n.translate(locale, "invidious_comments_disabled_text")) %></b></p>
|
||||
</div>
|
||||
<% else %>
|
||||
<% if video.comments? %>
|
||||
@ -315,7 +315,8 @@ we're going to need to do it here in order to allow for translations.
|
||||
<% end %>
|
||||
<% else %>
|
||||
<div id="comments-turned-off-on-video-message" class="h-box v-box">
|
||||
<p><b><%= I18n.translate(locale, "youtube_comments_disabled_text") %></b></p>
|
||||
<p><b><%= HTML.escape(I18n.translate(locale, "youtube_comments_disabled_text")) %></b></p>
|
||||
|
||||
<p>
|
||||
<b>
|
||||
<a href="javascript:void(0)" data-comments="reddit" id="try-reddit-comments-link">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user