Skip to content
Snippets Groups Projects
Unverified Commit b9b9a6ab authored by Sergio Gómez's avatar Sergio Gómez
Browse files

Fixed help variable can be undefined

parent 6b4b2f15
No related branches found
No related tags found
No related merge requests found
...@@ -74,6 +74,8 @@ class MultiAuth extends \SimpleSAML\Auth\Source ...@@ -74,6 +74,8 @@ class MultiAuth extends \SimpleSAML\Auth\Source
if (array_key_exists('help', $info)) { if (array_key_exists('help', $info)) {
$help = $info['help']; $help = $info['help'];
} else {
$help = null;
} }
if (array_key_exists('css-class', $info)) { if (array_key_exists('css-class', $info)) {
$css_class = $info['css-class']; $css_class = $info['css-class'];
......
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