1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

user_template_xml was returning the whole template instead of the user template

This commit is contained in:
Mariano Guezuraga 2014-09-22 23:19:09 +02:00
parent 3df4f4f995
commit 8f29000d35

View File

@ -202,9 +202,9 @@ module OpenNebula
# @return [String] The USER_TEMPLATE
def user_template_xml
if NOKOGIRI
@xml.xpath('TEMPLATE').to_s
@xml.xpath('USER_TEMPLATE').to_s
else
@xml.elements['TEMPLATE'].to_s
@xml.elements['USER_TEMPLATE'].to_s
end
end