Bug #18009 » t3lib_userauth.diff
typo3_current/t3lib/class.t3lib_userauth.php 2009-07-16 12:08:02.000000000 +0200 | ||
---|---|---|
// backend or frontend login - used for auth services
|
||
$this->loginType = ($this->name=='fe_typo_user') ? 'FE' : 'BE';
|
||
|
||
// Hook for alternative cookie-names
|
||
if (is_array($TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['preUserLookUp'])) {
|
||
$_params = array();
|
||
foreach ($TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['preUserLookUp'] as $_funcRef) {
|
||
t3lib_div::callUserFunction($_funcRef, $_params, $this);
|
||
}
|
||
}
|
||
// set level to normal if not already set
|
||
$this->security_level = $this->security_level ? $this->security_level : 'normal';
|