aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rexml/rexml.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/rexml.rb')
-rw-r--r--lib/rexml/rexml.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/rexml/rexml.rb b/lib/rexml/rexml.rb
index bc59a30c64..472fadb7ee 100644
--- a/lib/rexml/rexml.rb
+++ b/lib/rexml/rexml.rb
@@ -29,6 +29,18 @@ module REXML
Copyright = COPYRIGHT
Version = VERSION
+ @@entity_expansion_limit = 10_000
+
+ # Set the entity expansion limit. By default the limit is set to 10000.
+ def self.entity_expansion_limit=( val )
+ @@entity_expansion_limit = val
+ end
+
+ # Get the entity expansion limit. By default the limit is set to 10000.
+ def self.entity_expansion_limit
+ return @@entity_expansion_limit
+ end
+
@@entity_expansion_text_limit = 10_240
# Set the entity expansion limit. By default the limit is set to 10240.