diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-11-28 22:08:15 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-11-28 22:08:15 +0000 |
commit | d66c8faa9bc5521bc6659532542b13a0f05f0cd1 (patch) | |
tree | b69bcdf6d1089fcb0024dad0075301788beaaebf /lib/redmine/wiki_formatting | |
parent | c5cabfe106c913d709e27ff539de09037f4223b4 (diff) | |
download | redmine-d66c8faa9bc5521bc6659532542b13a0f05f0cd1.tar.gz redmine-d66c8faa9bc5521bc6659532542b13a0f05f0cd1.zip |
Fixed: Wiki section edit escapes pre tags inside pre blocks (#9673).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7976 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/wiki_formatting')
-rw-r--r-- | lib/redmine/wiki_formatting/textile/formatter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/wiki_formatting/textile/formatter.rb b/lib/redmine/wiki_formatting/textile/formatter.rb index 1122883eb..22cd5cbf9 100644 --- a/lib/redmine/wiki_formatting/textile/formatter.rb +++ b/lib/redmine/wiki_formatting/textile/formatter.rb @@ -57,7 +57,7 @@ module Redmine def extract_sections(index) @pre_list = [] text = self.dup - rip_offtags text, false + rip_offtags text, false, false before = '' s = '' after = '' |