From: Jean-Philippe Lang Date: Sat, 7 Apr 2018 08:08:04 +0000 (+0000) Subject: Merged r17272 into 3.4-stable (#26857). X-Git-Tag: 3.4.5~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fc401c3ab6395c5fd77e0cec0d58ae1669ea6499;p=redmine.git Merged r17272 into 3.4-stable (#26857). git-svn-id: http://svn.redmine.org/redmine/branches/3.4-stable@17273 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/public/javascripts/application.js b/public/javascripts/application.js index b6352fd2a..4e1b40ab8 100644 --- a/public/javascripts/application.js +++ b/public/javascripts/application.js @@ -1,6 +1,13 @@ /* Redmine - project management software Copyright (C) 2006-2017 Jean-Philippe Lang */ +/* Fix for CVE-2015-9251, to be removed with JQuery >= 3.0 */ +$.ajaxPrefilter(function (s) { + if (s.crossDomain) { + s.contents.script = false; + } +}); + function checkAll(id, checked) { $('#'+id).find('input[type=checkbox]:enabled').prop('checked', checked); }