public
Description: Makes your models act as textiled.
Homepage: http://errtheblog.com/posts/12-actsastextiled
Clone URL: git://github.com/defunkt/acts_as_textiled.git
Fix null gsubs by PJ Hyett
defunkt (author)
Mon Oct 02 16:48:16 -0700 2006
commit  5d51623a109b5bdcec62ff8e37f9104cf62dc4a8
tree    271781dc7d73607000604077a2166ed66b16359b
parent  00d9c68f045884eb77f50c44c4d3313a40ae289c
...
51
52
53
54
 
55
56
57
...
51
52
53
 
54
55
56
57
0
@@ -51,7 +51,7 @@ module Err
0
 
0
       private
0
         def strip_redcloth_html(html)
0
- html = html.dup.gsub!(html_regexp, '')
0
+ html = html.dup.gsub(html_regexp, '')
0
           redcloth_glyphs.each do |(entity, char)|
0
             html.gsub!(entity, char)
0
           end

Comments

    No one has commented yet.