Skip to content

Commit 1c43f2e

Browse files
authored
Merge pull request SAML-Toolkits#461 from HarlemSquirrel/warn-fix-20180606
Update Response
2 parents 5f73053 + 6f6492a commit 1c43f2e

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)