From 3b1434625695e946d961fb9dbcf77a9d511612e5 Mon Sep 17 00:00:00 2001 From: Hans Zandbelt <hans.zandbelt@surfnet.nl> Date: Fri, 3 Oct 2008 12:51:30 +0000 Subject: [PATCH] fix metadata configuration error report: avoid complaining about non-existing 'certFingerprint' entry when the alternative 'certificate' entry exists git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@910 44740490-163a-0410-bde0-09ae8108e29a --- www/admin/metadata.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/www/admin/metadata.php b/www/admin/metadata.php index b7357c549..bcc445b41 100644 --- a/www/admin/metadata.php +++ b/www/admin/metadata.php @@ -41,6 +41,12 @@ try { array('entityid', 'SingleSignOnService', 'SingleLogoutService', 'certFingerprint'), array('name', 'description', 'base64attributes', 'certificate', 'hint.cidr', 'saml2.relaxvalidation', 'SingleLogoutServiceResponse', 'request.signing', 'attributemap', 'attributealter', 'sharedkey', 'assertion.encryption', 'icon') ); + $index = array_search('certFingerprint', $results[$entityid]['required.notfound']); + if ($index !== FALSE) { + if (array_key_exists('certificate', $mentry)) { + unset($results[$entityid]['required.notfound'][$index]); + } + } } $et->data['metadata.saml20-idp-remote'] = $results; -- GitLab