aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-08-23 14:48:22 -0400
committerGitHub <noreply@github.com>2017-08-23 14:48:22 -0400
commit05d062a25bbf4b4e3f5a5e6ec5e4affcaccb4d57 (patch)
treeb6bcb05015c46296fc1a38158ca418bcdc801247
parentb497c16690c9f153cfcb99eeeb3103426a5db447 (diff)
parented1b4b92e189316da4dfcfc5bcd671248d6befca (diff)
downloadrails-05d062a25bbf4b4e3f5a5e6ec5e4affcaccb4d57.tar.gz
rails-05d062a25bbf4b4e3f5a5e6ec5e4affcaccb4d57.tar.bz2
rails-05d062a25bbf4b4e3f5a5e6ec5e4affcaccb4d57.zip
Merge pull request #30382 from yhirano55/fix_broken_link_for_java_xml
Fix broken link for Java xml [ci skip]
-rw-r--r--activesupport/lib/active_support/xml_mini/jdom.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/xml_mini/jdom.rb b/activesupport/lib/active_support/xml_mini/jdom.rb
index 60c7277028..ebed376c7a 100644
--- a/activesupport/lib/active_support/xml_mini/jdom.rb
+++ b/activesupport/lib/active_support/xml_mini/jdom.rb
@@ -40,7 +40,7 @@ module ActiveSupport
else
@dbf = DocumentBuilderFactory.new_instance
# secure processing of java xml
- # http://www.ibm.com/developerworks/xml/library/x-tipcfsx/index.html
+ # https://archive.is/9xcQQ
@dbf.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false)
@dbf.setFeature("http://xml.org/sax/features/external-general-entities", false)
@dbf.setFeature("http://xml.org/sax/features/external-parameter-entities", false)