Skip to content
Snippets Groups Projects
Commit d761adda authored by Lasse Birnbaum Jensen's avatar Lasse Birnbaum Jensen
Browse files

SAML20::HTTPRedirect::validateQuery - return false if validation is disabled.

If true is returned a logline saying "valid signature found" will logged. When false is returned nothing is logged about signatures. 

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@181 44740490-163a-0410-bde0-09ae8108e29a
parent abb7a45c
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ class SimpleSAML_Bindings_SAML20_HTTPRedirect {
// check wether to validate or not
if (!array_key_exists('request.signing', $md) || !$md['request.signing']){
return true;
return false;
}
if (!isset($_GET['Signature'])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment