summaryrefslogtreecommitdiffstats
path: root/lib/redmine/wiki_formatting/common_mark
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2021-08-11 21:52:37 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2021-08-11 21:52:37 +0000
commite1e4736e973493ea075e049c7ef2d12edebe35bf (patch)
treee458949ce129a77644766a68000addc7704f2beb /lib/redmine/wiki_formatting/common_mark
parentb897b13ba8212b9ede6fa207483bcb69c8ec6fa9 (diff)
downloadredmine-e1e4736e973493ea075e049c7ef2d12edebe35bf.tar.gz
redmine-e1e4736e973493ea075e049c7ef2d12edebe35bf.zip
Fixed Replace class var @@allowlist with a class instance var (#32424).
git-svn-id: http://svn.redmine.org/redmine/trunk@21166 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/wiki_formatting/common_mark')
-rw-r--r--lib/redmine/wiki_formatting/common_mark/sanitization_filter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/wiki_formatting/common_mark/sanitization_filter.rb b/lib/redmine/wiki_formatting/common_mark/sanitization_filter.rb
index 7ee973911..94e4b8f5e 100644
--- a/lib/redmine/wiki_formatting/common_mark/sanitization_filter.rb
+++ b/lib/redmine/wiki_formatting/common_mark/sanitization_filter.rb
@@ -28,7 +28,7 @@ module Redmine
}.freeze
def allowlist
- @@allowlist ||= customize_allowlist(super.deep_dup)
+ @allowlist ||= customize_allowlist(super.deep_dup)
end
private