diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2021-08-11 21:52:37 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2021-08-11 21:52:37 +0000 |
commit | e1e4736e973493ea075e049c7ef2d12edebe35bf (patch) | |
tree | e458949ce129a77644766a68000addc7704f2beb /lib/redmine/wiki_formatting/common_mark | |
parent | b897b13ba8212b9ede6fa207483bcb69c8ec6fa9 (diff) | |
download | redmine-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.rb | 2 |
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 |