1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rexml/element.rb (text=): false should be converted to string.

A patch by Teruo Oshida [ruby-dev:38351]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2009-10-18 20:54:29 +00:00
parent a542b9248e
commit 5498b5a4c7
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Oct 19 05:49:53 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
* lib/rexml/element.rb (text=): false should be converted to string.
A patch by Teruo Oshida [ruby-dev:38351]
Sun Oct 18 22:33:25 2009 Tadayoshi Funaba <tadf@dotrb.org> Sun Oct 18 22:33:25 2009 Tadayoshi Funaba <tadf@dotrb.org>
* lib/date.rb: do not require lib/delta.rb. * lib/date.rb: do not require lib/delta.rb.

View file

@ -492,7 +492,7 @@ module REXML
def text=( text ) def text=( text )
if text.kind_of? String if text.kind_of? String
text = Text.new( text, whitespace(), nil, raw() ) text = Text.new( text, whitespace(), nil, raw() )
elsif text and !text.kind_of? Text elsif !text.nil? and !text.kind_of? Text
text = Text.new( text.to_s, whitespace(), nil, raw() ) text = Text.new( text.to_s, whitespace(), nil, raw() )
end end
old_text = get_text old_text = get_text