Ver código fonte

formatter: use Pleroma.HTML module instead of HtmlSanitizeEx directly

tags/v0.9.9
William Pitcock 5 anos atrás
pai
commit
52b05137c5
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      lib/pleroma/formatter.ex

+ 1
- 1
lib/pleroma/formatter.ex Ver arquivo

@@ -193,7 +193,7 @@ defmodule Pleroma.Formatter do

# TODO: make it use something other than @link_regex
def html_escape(text, "text/html") do
HtmlSanitizeEx.basic_html(text)
HTML.filter_tags(text)
end

def html_escape(text, "text/plain") do


Carregando…
Cancelar
Salvar