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