diff options
author | Go MAEDA <maeda@farend.jp> | 2023-03-24 09:34:40 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-03-24 09:34:40 +0000 |
commit | fe71cb5bbea6504d643d4e33ca7148191ee21952 (patch) | |
tree | ab7942e0d087dca92cf42ee5e2b27acfeec1c45e /lib/redmine/wiki_formatting | |
parent | 2b00670e4d204db24b9e38dd5e7a8d72aa7470bc (diff) | |
download | redmine-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.rb | 2 |
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 |