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; } /**