From 034fc64d66c85b69377ae4655621c7ba550c172e Mon Sep 17 00:00:00 2001 From: Sebastian Michaelsen Date: Wed, 11 May 2011 15:23:27 +0200 Subject: [PATCH] [~BUG]logoutHeader_stdWrap and logoutMessage_stdWrap are not used, resolves #26758 diff --git a/typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php b/typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php index d811db5..5d36360 100644 --- a/typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php +++ b/typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php @@ -458,8 +458,8 @@ class tx_felogin_pi1 extends tslib_pibase { } else { if($this->logintype === 'logout') { // login form after logout - $markerArray['###STATUS_HEADER###'] = $this->getDisplayText('logout_header',$this->conf['welcomeHeader_stdWrap.']); - $markerArray['###STATUS_MESSAGE###'] = $this->getDisplayText('logout_message',$this->conf['welcomeMessage_stdWrap.']); + $markerArray['###STATUS_HEADER###'] = $this->getDisplayText('logout_header',$this->conf['logoutHeader_stdWrap.']); + $markerArray['###STATUS_MESSAGE###'] = $this->getDisplayText('logout_message',$this->conf['logoutMessage_stdWrap.']); } else { // login form $markerArray['###STATUS_HEADER###'] = $this->getDisplayText('welcome_header',$this->conf['welcomeHeader_stdWrap.']); -- 1.7.4.msysgit.0