Skip to content

Commit

Permalink
Merge pull request SAML-Toolkits#65 from andrewhr/auth_request_timestamp
Browse files Browse the repository at this point in the history
Fix IssueInstant date format
  • Loading branch information
stouset committed Feb 5, 2013
2 parents f176ade + 6dd8381 commit 5cbac3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/onelogin/ruby-saml/authrequest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def create(settings, params = {})

def create_authentication_xml_doc(settings)
uuid = "_" + UUID.new.generate
time = Time.now.utc.strftime("%Y-%m-%dT%H:%M:%S")
time = Time.now.utc.strftime("%Y-%m-%dT%H:%M:%SZ")
# Create AuthnRequest root element using REXML
request_doc = REXML::Document.new

Expand Down

0 comments on commit 5cbac3d

Please sign in to comment.