Index: t3lib/mail/class.t3lib_mail_swiftmaileradapter.php =================================================================== --- t3lib/mail/class.t3lib_mail_swiftmaileradapter.php (Revision 10331) +++ t3lib/mail/class.t3lib_mail_swiftmaileradapter.php (Arbeitskopie) @@ -79,7 +79,11 @@ return TRUE; } $this->message->setSubject($subject); - $this->message->setTo($to); + // handle recipients + $toAddresses = $this->parseAddresses($to); + if (count($toAddresses) > 0) { + $this->message->setTo($toAddresses); + } // handle additional headers $headers = t3lib_div::trimExplode(LF, $additionalHeaders, TRUE); $this->messageHeaders = $this->message->getHeaders(); Index: typo3/sysext/t3skin/extjs/xtheme-t3skin.css =================================================================== --- typo3/sysext/t3skin/extjs/xtheme-t3skin.css (Revision 10331) +++ typo3/sysext/t3skin/extjs/xtheme-t3skin.css (Arbeitskopie) @@ -803,7 +803,6 @@ -webkit-border-radius: 1px; border-radius: 1px; color: #434343; - position: relative; } .x-btn-icon { @@ -823,11 +822,6 @@ color: #1e1e1e; } -.x-btn-click { - top: 1px; - left: 1px; -} - .x-btn-disabled *{ color:gray !important; } Index: typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php =================================================================== --- typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php (Revision 10331) +++ typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php (Arbeitskopie) @@ -43,51 +43,9 @@ function checkForUpdate(&$description) { global $TYPO3_CONF_VARS; - if ($this->compatVersionIsCurrent()) { + if (!$this->compatVersionIsCurrent()) { $description = '

- Up to date! -
- If you do not use the wizard, your current TYPO3 - installation is configured to use all the features included - in the current release ' . TYPO3_version . '. -
- There are two possibilities that you see this screen: -

-
    -
  1. - You just updated from a previous version of - TYPO3: - Because of some new features, the frontend output of - your site might have changed. To emulate the "old" - frontend behavior, change the compatibility version - by continuing to step 2. - This is recommended after every update - to make sure the frontend output is not altered. When - re-running the wizard, you will see the changes needed - for using the new features. - Please continue to step two. -
  2. -
  3. - You just made a fresh install of TYPO3: - Perfect! All new features will be used. - You can stop here and do not need this wizard now. -
  4. -
- '; - - if (!$TYPO3_CONF_VARS['SYS']['compat_version']) { - $description .= ' -

- The compatibility version has been set to the current - TYPO3 version. This is a stamp and has no impact for - your installation. -

- '; - } - } else { - $description = ' -

Your current TYPO3 installation is configured to behave like version ' . htmlspecialchars($TYPO3_CONF_VARS['SYS']['compat_version']) . ' @@ -101,9 +59,10 @@ features.

'; + return 1; } - return 1; // Return 1 in any case so user has possibility to switch back to a previous compat_version. + return 0; } /**