oauth provider now showed in small caps

This commit is contained in:
Faustin 2022-08-03 21:14:38 +02:00
parent 29bb03a25b
commit f06de750eb

View File

@ -192,6 +192,7 @@ foreach ($conf->global as $key => $val) {
$name = $langs->trans("NoName");
}
$provider = preg_replace('/-.*$/', '', $key);
$provider = ucfirst(strtolower($provider));
$oauthservices[$key] = $name." (".$provider.")";
}