]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/application_helper.rb
Rename all ID columns that aren't unique
[rails.git] / app / helpers / application_helper.rb
index e285215b8d85a01c81bc7eabb93d58ba233ff774..8073c2583d0f88b5f0d258f85e5b1448e11e8683 100644 (file)
@@ -10,11 +10,11 @@ module ApplicationHelper
   end
 
   def linkify(text)
-    return auto_link(text, :link => :urls, :html => { :rel => "nofollow" })
+    return Rinku.auto_link(text, :urls, tag_options(:rel => "nofollow"))
   end
 
   def html_escape_unicode(text)
-    chars = ActiveSupport::Multibyte::Chars.u_unpack(text).map do |c|
+    chars = ActiveSupport::Multibyte::Unicode.u_unpack(text).map do |c|
       c < 127 ? c.chr : "&##{c.to_s};"
     end