summaryrefslogtreecommitdiffstats
path: root/lib/rss/rexmlparser.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-08 12:58:36 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-08 12:58:36 +0000
commit2fa78a09f7d3c35640f261cc427944a5011401cc (patch)
treea54da3329420c04614c460c3b45388951a790aa2 /lib/rss/rexmlparser.rb
parent1fc7f84ed05d1a457040d9be92e753ceb6cc66ce (diff)
downloadruby-2fa78a09f7d3c35640f261cc427944a5011401cc.tar.gz
ruby-2fa78a09f7d3c35640f261cc427944a5011401cc.tar.xz
ruby-2fa78a09f7d3c35640f261cc427944a5011401cc.zip
* lib/rss, test/rss, sample/rss: backported from CVS HEAD.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7509 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/rexmlparser.rb')
-rw-r--r--lib/rss/rexmlparser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rss/rexmlparser.rb b/lib/rss/rexmlparser.rb
index 375b7794f..73e352a73 100644
--- a/lib/rss/rexmlparser.rb
+++ b/lib/rss/rexmlparser.rb
@@ -36,7 +36,7 @@ module RSS
include ListenerMixin
def xmldecl(version, encoding, standalone)
- super
+ super(version, encoding, standalone == "yes")
# Encoding is converted to UTF-8 when REXML parse XML.
@encoding = 'UTF-8'
end