This commit is contained in:
albert
2013-03-29 16:45:59 -04:00
parent d7c6702be0
commit 85a5fcc658
16 changed files with 28 additions and 28 deletions

View File

@@ -58,7 +58,7 @@ class Artist < ActiveRecord::Base
module ClassMethods
def normalize_name(name)
name.to_s.downcase.strip.gsub(/ /, '_')
name.to_s.mb_chars.downcase.strip.gsub(/ /, '_')
end
end