Index: typo3/sysext/felogin/ext_typoscript_setup.txt =================================================================== --- typo3/sysext/felogin/ext_typoscript_setup.txt (revision 7372) +++ typo3/sysext/felogin/ext_typoscript_setup.txt (working copy) @@ -73,8 +73,11 @@ changePasswordMessage_stdWrap { wrap =
|
} + + cookieWarning_stdWrap { + wrap =

|

+ } - # stdWrap for fe_users fields used in Messages userfields { username { Index: typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php =================================================================== --- typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php (revision 7372) +++ typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php (working copy) @@ -132,7 +132,7 @@ // Process the redirect if (($this->logintype === 'login' || $this->logintype === 'logout') && $this->redirectUrl && !$this->noRedirect) { if (!$GLOBALS['TSFE']->fe_user->cookieId) { - $content .= '

' . $this->pi_getLL('cookie_warning', '', 1) . '

'; + $content .= $this->cObj->stdWrap($this->pi_getLL('cookie_warning', '', 1), $this->conf['cookieWarning_stdWrap.']); } else { t3lib_utility_Http::redirect($this->redirectUrl); }