Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>
  • Loading branch information
zorn-v authored and backportbot-nextcloud[bot] committed Oct 20, 2022
commit c6dea6e60952eb93ad52ad921475aed9af8d2a9e
2 changes: 1 addition & 1 deletion lib/private/legacy/OC_App.php
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ public static function getAlternativeLogIns(): array {
self::$altLogin[] = [
'name' => $provider->getLabel(),
'href' => $provider->getLink(),
'style' => $provider->getClass(),
'class' => $provider->getClass(),
];
} catch (Throwable $e) {
\OC::$server->getLogger()->logException($e, [
Expand Down