]> source.dussan.org Git - redmine.git/commitdiff
Remove security fix for JQuery 1.2 (#33383).
authorGo MAEDA <maeda@farend.jp>
Sun, 10 Jan 2021 00:18:50 +0000 (00:18 +0000)
committerGo MAEDA <maeda@farend.jp>
Sun, 10 Jan 2021 00:18:50 +0000 (00:18 +0000)
Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@20709 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/javascripts/application.js

index 98360fe70580e9924b2776e70fa28871568e69c9..b214f7540f58299dc08fa65a08825988f715d692 100644 (file)
@@ -1,13 +1,6 @@
 /* Redmine - project management software
    Copyright (C) 2006-2020  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);
 }