From 23b21ef12dda669a4500b570f02a36eb7cc51098 Mon Sep 17 00:00:00 2001 From: haemmer Date: Thu, 26 Sep 2013 10:09:20 +0000 Subject: [PATCH] Fixed wrong condition --- templates.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates.php b/templates.php index 998ca0c..c2eb9dc 100755 --- a/templates.php +++ b/templates.php @@ -137,7 +137,7 @@ function printDropDownList($IDProviders, $selectedIDP = ''){ } // Add another category unless first (and probably only) category is unknown - if (!empty($optgroup) && $key != 'unknown'){ + if (!empty($optgroup) || $key != 'unknown'){ echo ' '; $optgroup = $key; -- GitLab