Issue #2459339 by hgoto, dagmar, klausi, kporras07, David_Rothstein, Fabianx: Log messages should be XSS filtered on display

merge-requests/26/head
stefan.r 2016-09-29 17:47:05 +01:00
parent 27e42bdd67
commit 9d50e137da
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ Drupal 7.51, xxxx-xx-xx (development version)
- Exceptions thrown in dblog_watchdog() are now caught and ignored.
- Clarified the warning that appears when modules are missing or have moved.
- If the page title is "0", it is now displayed.
- Log messages are now XSS filtered on display.
- Draggable tables do now work on touch screen devices.
- Numerous small performance improvements.
- Numerous small bugfixes.

View File

@ -277,8 +277,8 @@ Drupal.tableDrag.prototype.makeDraggable = function (item) {
// Add the mousedown action for the handle.
handle.bind('mousedown touchstart pointerdown', function (event) {
if(event.originalEvent.type == "touchstart"){
event=event.originalEvent.touches[0];
if (event.originalEvent.type == "touchstart") {
event = event.originalEvent.touches[0];
}
// Create a new dragObject recording the event information.
self.dragObject = {};