1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Parser does not concatenates all the strings when parsing

When parsing a Route53 DNS record containing a " such as 
"v=DKIM1; k=rsa; p=MIGfMA0GCSqG....x59/8qdGvAo+S5xwIDAQAB", the parser just retains the last double quote.
This commit is contained in:
Geraud 2011-04-13 08:58:06 -07:00
parent a91a31c7c4
commit 1364f1a0d8

View file

@ -15,7 +15,8 @@ module Fog
end
def characters(string)
@value = string
@value ||= ''
@value << string
end
def start_element(name, attrs = [])