diff --git a/lib/redmine/scm/adapters/subversion_adapter.rb b/lib/redmine/scm/adapters/subversion_adapter.rb index b82f5e69d..c59a053f6 100644 --- a/lib/redmine/scm/adapters/subversion_adapter.rb +++ b/lib/redmine/scm/adapters/subversion_adapter.rb @@ -70,7 +70,7 @@ module Redmine end begin doc = ActiveSupport::XmlMini.parse(output) - #root_url = doc.elements["info/entry/repository/root"].text + # root_url = doc.elements["info/entry/repository/root"].text info = Info.new({:root_url => doc['info']['entry']['repository']['root']['__content__'], :lastrev => Revision.new({ :identifier => doc['info']['entry']['commit']['revision'], @@ -263,7 +263,7 @@ module Redmine end # Helper that iterates over the child elements of a xml node - # MiniXml returns a hash when a single child is found + # MiniXml returns a hash when a single child is found # or an array of hashes for multiple children def each_xml_element(node, name) if node && node[name]