Steps to Reproduce
- Upload any attachment to an XWiki page.
- Check the history tab; it will display:
Uploaded new attachment "attachmentName", version 1.1
- Delete that attachment and check the history tab again.
Actual Result The record will display:
Deleted attachment "attachmentName"
. This includes the HTML entity which represents a double-quote Expected Result The action should be recorded as:
Deleted attachment "attachmentName"
Note This behavior is consistent for images, as there is a separate call to the method where the filename is passed. Although I have not encountered a failed operation, based on the code a failed action would also display the HTML entity instead of the actual double-quote. |