diff -wBNru typo3/sysext/felogin_old/ext_typoscript_setup.txt typo3/sysext/felogin/ext_typoscript_setup.txt --- typo3/sysext/felogin_old/ext_typoscript_setup.txt 2008-10-06 12:12:17.000000000 +0200 +++ typo3/sysext/felogin/ext_typoscript_setup.txt 2008-11-06 11:00:53.000000000 +0100 @@ -20,6 +20,7 @@ #additional fields + dontShowLoggedInMessage = showForgotPasswordLink = showPermaLogin = diff -wBNru typo3/sysext/felogin_old/pi1/class.tx_felogin_pi1.php typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php --- typo3/sysext/felogin_old/pi1/class.tx_felogin_pi1.php 2008-10-06 12:12:17.000000000 +0200 +++ typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php 2008-11-06 11:00:52.000000000 +0100 @@ -103,7 +103,7 @@ if ($this->piVars['forgot'] && ($this->flexFormValue('showForgotPassword','sDEF') || $this->conf['showForgotPasswordLink'])) { $content .= $this->showForgot(); } else { - if($this->userIsLoggedIn && !$this->logintype) { + if($this->userIsLoggedIn && (!$this->logintype || $this->conf['dontShowLoggedInMessage']) && !$this->redirectUrl) { $content .= $this->showLogout(); } else { $content .= $this->showLogin();