Skip to content

Commit

Permalink
[BUGFIX] Fix HTML in drag-title of PageTreeDragDrop.js
Browse files Browse the repository at this point in the history
Resolves: #87145
Releases: master
Change-Id: Ie3abd71840ca8fbd48150ae2b4f34efc5273ce63
Reviewed-on: https://review.typo3.org/59121
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Markus Klein <markus.klein@typo3.org>
Reviewed-by: Oliver Hader <oliver.hader@typo3.org>
Tested-by: Oliver Hader <oliver.hader@typo3.org>
Tested-by: Riccardo De Contardi <erredeco@gmail.com>
Reviewed-by: Benni Mack <benni@typo3.org>
Tested-by: Benni Mack <benni@typo3.org>
  • Loading branch information
neufeind authored and bmack committed Dec 13, 2018
1 parent 190654d commit 479d28a
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -859,7 +859,9 @@ define([
})
)
),
$('<span>', {'class': 'node-dd__name'}).text(securityUtility.encodeHtml(name))
$('<span>', {'class': 'node-dd__name'}).html(
securityUtility.encodeHtml(name)
)
)
)
).html();
Expand Down

0 comments on commit 479d28a

Please sign in to comment.