summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/XML
diff options
context:
space:
mode:
authorJaime Perez Crespo <jaime.perez@uninett.no>2016-03-09 13:29:08 +0100
committerJaime Perez Crespo <jaime.perez@uninett.no>2016-03-09 13:29:08 +0100
commit8b6abc0a5d0f954a2a982750581717c6c54f0514 (patch)
tree0a31d3b97bd5507f02b6a628e1365fdc1a2ee027 /lib/SimpleSAML/XML
parent7865bfd4f6db78580133ced5e7b56642263c77b3 (diff)
downloadsimplesamlphp-8b6abc0a5d0f954a2a982750581717c6c54f0514.zip
simplesamlphp-8b6abc0a5d0f954a2a982750581717c6c54f0514.tar.gz
simplesamlphp-8b6abc0a5d0f954a2a982750581717c6c54f0514.tar.bz2
Update the classes in lib/SimpleSAML/ too.
Diffstat (limited to 'lib/SimpleSAML/XML')
-rw-r--r--lib/SimpleSAML/XML/Validator.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/SimpleSAML/XML/Validator.php b/lib/SimpleSAML/XML/Validator.php
index 5555786..545f3df 100644
--- a/lib/SimpleSAML/XML/Validator.php
+++ b/lib/SimpleSAML/XML/Validator.php
@@ -401,22 +401,22 @@ class SimpleSAML_XML_Validator {
throw new Exception('Could not load CA file: ' . $caFile);
}
- SimpleSAML_Logger::debug('Validating certificate against CA file: ' . var_export($caFile, TRUE));
+ SimpleSAML\Logger::debug('Validating certificate against CA file: ' . var_export($caFile, TRUE));
$resBuiltin = self::validateCABuiltIn($certificate, $caFile);
if ($resBuiltin !== TRUE) {
- SimpleSAML_Logger::debug('Failed to validate with internal function: ' . var_export($resBuiltin, TRUE));
+ SimpleSAML\Logger::debug('Failed to validate with internal function: ' . var_export($resBuiltin, TRUE));
$resExternal = self::validateCAExec($certificate, $caFile);
if ($resExternal !== TRUE) {
- SimpleSAML_Logger::debug('Failed to validate with external function: ' . var_export($resExternal, TRUE));
+ SimpleSAML\Logger::debug('Failed to validate with external function: ' . var_export($resExternal, TRUE));
throw new Exception('Could not verify certificate against CA file "'
. $caFile . '". Internal result:' . $resBuiltin .
' External result:' . $resExternal);
}
}
- SimpleSAML_Logger::debug('Successfully validated certificate.');
+ SimpleSAML\Logger::debug('Successfully validated certificate.');
}
}