summaryrefslogtreecommitdiffstats
path: root/lib/redmine/wiki_formatting
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2023-03-24 09:34:40 +0000
committerGo MAEDA <maeda@farend.jp>2023-03-24 09:34:40 +0000
commitfe71cb5bbea6504d643d4e33ca7148191ee21952 (patch)
treeab7942e0d087dca92cf42ee5e2b27acfeec1c45e /lib/redmine/wiki_formatting
parent2b00670e4d204db24b9e38dd5e7a8d72aa7470bc (diff)
downloadredmine-fe71cb5bbea6504d643d4e33ca7148191ee21952.tar.gz
redmine-fe71cb5bbea6504d643d4e33ca7148191ee21952.zip
Fix RuboCop offense Lint/MissingSuper (#36919).
git-svn-id: https://svn.redmine.org/redmine/trunk@22147 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/wiki_formatting')
-rw-r--r--lib/redmine/wiki_formatting/html_parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/wiki_formatting/html_parser.rb b/lib/redmine/wiki_formatting/html_parser.rb
index b7fff8e70..3763c95db 100644
--- a/lib/redmine/wiki_formatting/html_parser.rb
+++ b/lib/redmine/wiki_formatting/html_parser.rb
@@ -41,7 +41,7 @@ module Redmine
class WikiTags < ::Loofah::Scrubber
def initialize(tags_to_text)
- @direction = :bottom_up
+ super(:direction => :bottom_up)
@tags_to_text = tags_to_text || {}
end