Skip to content

Commit 3ffeb96

Browse files
author
Dani Pfeil
committed
fix bug fetching beuser
1 parent cccfb2a commit 3ffeb96

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"serviceprovider"
1111
],
1212
"license": "GPL-3.0-only",
13-
"version": "4.1.0",
13+
"version": "4.1.1",
1414
"require": {
1515
"typo3/minimal": ">=9",
1616
"simplesamlphp/simplesamlphp": "^1.19"

ext_emconf.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
$EM_CONF["samlauthentication"] = [
2121
'title' => 'SAML Authentication',
2222
'description' => 'This extension adds a authentication method for SAML with different service provider.',
23-
'version' => '4.1.0',
23+
'version' => '4.1.1',
2424
'category' => 'services',
2525
'constraints' => [
2626
'depends' => [

ext_localconf.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,9 @@
3535
]
3636
);
3737

38-
$GLOBALS['TYPO3_CONF_VARS']['SVCONF']['auth']['setup']['BE_fetchUserIfNoSession'] = true;
39-
4038
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['backend']['loginProviders'][1433416020] = [
4139
'provider' => \DanielPfeil\Samlauthentication\Backend\LoginProvider\SamlLoginProvider::class,
4240
'sorting' => 50,
4341
'icon-class' => 'fa-key',
4442
'label' => 'LLL:EXT:samlauthentication/Resources/Private/Language/locallang.xlf:login.simplesaml'
45-
];
43+
];

0 commit comments

Comments
 (0)