Skip to content
Snippets Groups Projects
Commit 831f468b authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Do not list empty metadata sets for remote metadata.

parent 2f2a0b5f
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,11 @@ if ($config->getBoolean('enable.adfs-idp', FALSE) === true) {
} catch(Exception $e) {}
}
foreach ($metaentries['remote'] as $key => $value) {
if (empty($value)) {
unset($metaentries['remote'][$key]);
}
}
......
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