Skip to content

Commit 6f6492a

Browse files
author
Kevin McCormack
committed
Update Response
Fixes SAML-Toolkits#459
1 parent a15c183 commit 6f6492a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/onelogin/ruby-saml/response.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def attributes
173173
else
174174
REXML::XPath.match(e,'a:NameID', { "a" => ASSERTION }).collect do |n|
175175
base_path = n.attributes['NameQualifier'] ? "#{n.attributes['NameQualifier']}/" : ''
176-
base_path + Utils.element_text(n)
176+
"#{base_path}#{Utils.element_text(n)}"
177177
end
178178
end
179179
}

0 commit comments

Comments
 (0)