]> 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)
committerDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 23 Jun 2022 11:24:04 +0000 (13:24 +0200)
commiteeed5e0fbea1862c4b3df8e8103b34edd3c28409
tree6f906390d0fc2c57d42cfa744b87fc13c1360cd6
parenteb677bf048a2fd821d3397ccf33aa2b566026d7b
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