Revert Revision 520; This is more thorough

This ensures that @page.name has the right (utf8)
encoding.
This commit is contained in:
Jacques Distler 2010-01-04 18:43:27 -06:00
parent d786e95a77
commit 6cf1463525
4 changed files with 6 additions and 3 deletions

View file

@ -3,7 +3,7 @@ class Author < String
attr_reader :name
def initialize(name, ip = nil)
@ip = ip
super(name)
super(name.as_utf8)
end
def name=(value)