in print view, encode summary html entities

This commit is contained in:
rolux 2013-03-09 07:35:26 +00:00
parent 71424746da
commit 31f138b2a8

View file

@ -81,7 +81,8 @@ pandora.ui.printView = function(data) {
+ ( + (
item.summary item.summary
? ' <span style="color: rgb(128, 128, 128)">' ? ' <span style="color: rgb(128, 128, 128)">'
+ item.summary + '</span>' + Ox.encodeHTMLEntities(item.summary)
+ '</span>'
: '' : ''
) )
) )