2008-09-08 Benjamin Mack <benni@typo3.org>
+ * Fixed bug #9312: felogin: uninitialized vars (Thanks to Steffen Kamper)
* Fixed bug #9282: Allow subkeys for TypoScript "config." array
2008-09-08 Stanislas Rolland <typo3@sjbr.ca>
*/
protected function showForgot() {
$subpart = $this->cObj->getSubpart($this->template, '###TEMPLATE_FORGOT###');
+ $subpartArray = $linkpartArray = array();
+
if ($this->piVars['forgot_email']) {
if (t3lib_div::validEmail($this->piVars['forgot_email'])) {
// look for user record and send the password
*/
protected function showLogout() {
$subpart = $this->cObj->getSubpart($this->template, '###TEMPLATE_LOGOUT###');
+ $subpartArray = $linkpartArray = array();
$markerArray['###STATUS_HEADER###'] = $this->getDisplayText('status_header',$this->conf['logoutHeader_stdWrap.']);
$markerArray['###STATUS_MESSAGE###']=$this->getDisplayText('status_message',$this->conf['logoutMessage_stdWrap.']);$this->cObj->stdWrap($this->flexFormValue('message','s_status'),$this->conf['logoutMessage_stdWrap.']);
*/
protected function showLogin() {
$subpart = $this->cObj->getSubpart($this->template, '###TEMPLATE_LOGIN###');
+ $subpartArray = $linkpartArray = array();
$markerArray['###LEGEND###'] = $this->pi_getLL('oLabel_header_welcome', '', 1);