]> source.dussan.org Git - nextcloud-server.git/commit
Fix quota text shown escaped
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 23 Jun 2022 11:24:04 +0000 (13:24 +0200)
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>
Tue, 5 Jul 2022 20:25:44 +0000 (20:25 +0000)
commit79542cf70c4a77af20feb8a9fad2a045931ae9f3
tree0a2d4809248a83eae6677161694e9bcf9724e556
parente00ef77def5cde9f631e4a3d87f9d6b0d909decf
Fix quota text shown escaped

"t()" escapes and sanitizes the returned text by default, so strings
like "<" are converted to "&lt;". However, the "jQuery.text()" parameter
does not need to be escaped, as "&lt;" is shown literally as "&lt;"
rather than "<". Now "jQuery.html()" is used instead, which "unescapes"
the given text and sets it as a new text node (as the text in the
parameter does not contain markup for elements, only text).

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
apps/files/js/files.js