mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Fix alternative logins custom css class
In NC 25 login page was changed, and alternative login css class get from `class` prop but not `style`. It is correct change in my opinion, so just add backend fix. Signed-off-by: zorn-v <zorn7@yandex.ru>
This commit is contained in:
parent
53b6d67bc1
commit
a27388ccd3
1 changed files with 1 additions and 1 deletions
|
|
@ -722,7 +722,7 @@ class OC_App {
|
|||
self::$altLogin[] = [
|
||||
'name' => $provider->getLabel(),
|
||||
'href' => $provider->getLink(),
|
||||
'style' => $provider->getClass(),
|
||||
'class' => $provider->getClass(),
|
||||
];
|
||||
} catch (Throwable $e) {
|
||||
\OC::$server->getLogger()->logException($e, [
|
||||
|
|
|
|||
Loading…
Reference in a new issue