[Pkg-owncloud-commits] [owncloud] 154/223: escape before output, fixes #9041

David Prévot taffit at moszumanska.debian.org
Sun Jun 22 01:54:19 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 3ebb1565a7251966647d81c4d0574a8db8a8d116
Author: Arthur Schiwon <blizzz at owncloud.com>
Date:   Mon Jun 16 13:44:41 2014 +0200

    escape before output, fixes #9041
---
 settings/js/users/deleteHandler.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/settings/js/users/deleteHandler.js b/settings/js/users/deleteHandler.js
index 9cbe7cd..2d8b449 100644
--- a/settings/js/users/deleteHandler.js
+++ b/settings/js/users/deleteHandler.js
@@ -94,7 +94,7 @@ DeleteHandler.prototype.showNotification = function() {
 		}
 		$('#notification').data(this.notificationDataID, true);
 		var msg = this.notificationMessage.replace(this.notificationPlaceholder,
-											this.oidToDelete);
+											escapeHTML(this.oidToDelete));
 		this.notifier.showHtml(msg);
 	}
 };

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list