new version, disable dtext ragel for flag/appeal helper

This commit is contained in:
r888888888
2016-04-25 17:15:08 -07:00
parent 634255e584
commit 841c7539cc
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ module PostAppealsHelper
html << '<ul>' html << '<ul>'
post.appeals.each do |appeal| post.appeals.each do |appeal|
html << '<li>' + DTextRagel.parse_inline(appeal.reason).html_safe + ' - ' + link_to_user(appeal.creator) + ' ' + time_ago_in_words_tagged(appeal.created_at) + '</li>' html << '<li>' + DText.parse_inline(appeal.reason).html_safe + ' - ' + link_to_user(appeal.creator) + ' ' + time_ago_in_words_tagged(appeal.created_at) + '</li>'
end end
html << '</ul>' html << '</ul>'

View File

@@ -5,7 +5,7 @@ module PostFlagsHelper
post.flags.each do |flag| post.flags.each do |flag|
html << '<li>' html << '<li>'
html << DTextRagel.parse_inline(flag.reason).html_safe html << DText.parse_inline(flag.reason).html_safe
if CurrentUser.is_moderator? if CurrentUser.is_moderator?
html << ' - ' + link_to_user(flag.creator) html << ' - ' + link_to_user(flag.creator)

View File

@@ -4,7 +4,7 @@ module Danbooru
class Configuration class Configuration
# The version of this Danbooru. # The version of this Danbooru.
def version def version
"2.101.0" "2.102.0"
end end
# The name of this Danbooru. # The name of this Danbooru.