Index: t3lib/class.t3lib_befunc.php =================================================================== --- t3lib/class.t3lib_befunc.php (revision 4834) +++ t3lib/class.t3lib_befunc.php (working copy) @@ -3903,7 +3903,7 @@ } else { $warrantyNote = 'TYPO3 comes with ABSOLUTELY NO WARRANTY; click for details.'; } - $cNotice = 'TYPO3 logoTYPO3 CMS ver. '.htmlspecialchars(TYPO3_version).'. Copyright © '.htmlspecialchars(TYPO3_copyright_year).' Kasper Skårhøj. Extensions are copyright of their respective owners. Go to http://typo3.com/ for details. + $cNotice = 'TYPO3 logoTYPO3 CMS ver. '.htmlspecialchars(TYPO3_version_display).'. Copyright © '.htmlspecialchars(TYPO3_copyright_year).' Kasper Skårhøj. Extensions are copyright of their respective owners. Go to http://typo3.com/ for details. '.strip_tags($warrantyNote, '').' This is free software, and you are welcome to redistribute it under certain conditions; click for details. Obstructing the appearance of this notice is prohibited by law.'; return $cNotice; Index: t3lib/class.t3lib_htmlmail.php =================================================================== --- t3lib/class.t3lib_htmlmail.php (revision 4834) +++ t3lib/class.t3lib_htmlmail.php (working copy) @@ -247,7 +247,7 @@ public function t3lib_htmlmail() { $this->forceReturnPath = $GLOBALS['TYPO3_CONF_VARS']['SYS']['forceReturnPath']; - $this->mailer = 'TYPO3 '.TYPO3_version; + $this->mailer = 'TYPO3 '.TYPO3_version_display; } Index: t3lib/config_default.php =================================================================== --- t3lib/config_default.php (revision 4834) +++ t3lib/config_default.php (working copy) @@ -342,8 +342,9 @@ $T3_VAR = array(); // Initialize. // TYPO3 version -$TYPO_VERSION = '4.3-dev'; // deprecated: use the constants defined below +$TYPO_VERSION = '4.3.0'; // deprecated: use the constants defined below define('TYPO3_version', $TYPO_VERSION); +define('TYPO3_version_display', TYPO3_version . ' dev'); define('TYPO3_branch', '4.3'); define('TYPO3_copyright_year', '1998-2008'); define('TYPO3_user_agent', 'User-Agent: TYPO3/'.TYPO3_version); Index: typo3/alt_intro.php =================================================================== --- typo3/alt_intro.php (revision 4834) +++ typo3/alt_intro.php (working copy) @@ -111,7 +111,7 @@ $this->content.= $TBE_TEMPLATE->startPage('About modules'); $this->content .= ' -

TYPO3 '.TYPO3_version.'
'.$LANG->getLL('introtext').'

+

TYPO3 '.TYPO3_version_display . '
'.$LANG->getLL('introtext').'

'.t3lib_BEfunc::TYPO3_copyRightNotice().'

'; Index: typo3/alt_main.php =================================================================== --- typo3/alt_main.php (revision 4834) +++ typo3/alt_main.php (working copy) @@ -506,7 +506,7 @@ $GLOBALS['TBE_TEMPLATE']->JScode.=$GLOBALS['TBE_TEMPLATE']->wrapScriptTags($this->mainJScode); // Title: - $title = $TYPO3_CONF_VARS['SYS']['sitename'] ? $TYPO3_CONF_VARS['SYS']['sitename'].' [TYPO3 '.TYPO3_version.']' : 'TYPO3 '.TYPO3_version; + $title = $TYPO3_CONF_VARS['SYS']['sitename'] ? $TYPO3_CONF_VARS['SYS']['sitename'].' [TYPO3 '.TYPO3_version_display.']' : 'TYPO3 '.TYPO3_version_display; // Start page header: $this->content.=$GLOBALS['TBE_TEMPLATE']->startPage($title); Index: typo3/backend.php =================================================================== --- typo3/backend.php (revision 4834) +++ typo3/backend.php (working copy) @@ -242,8 +242,8 @@ // set document title: $title = ($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'] - ? $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'].' [TYPO3 '.TYPO3_version.']' - : 'TYPO3 '.TYPO3_version + ? $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'].' [TYPO3 '.TYPO3_version_display.']' + : 'TYPO3 '.TYPO3_version_display ); // start page header: Index: typo3/sysext/install/mod/class.tx_install.php =================================================================== --- typo3/sysext/install/mod/class.tx_install.php (revision 4834) +++ typo3/sysext/install/mod/class.tx_install.php (working copy) @@ -4882,7 +4882,7 @@
TYPO3 '.TYPO3_branch.' Install Tool
Site: '.$GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'].'
- '.($this->passwordOK ? '
Version: '.TYPO3_version.'
':'').'
+ '.($this->passwordOK ? '
Version: '.TYPO3_version_display.'
':'').'
'.($this->step?$this->stepHeader():$this->menu()).$content.'
'.$this->note123().$this->endNotes().' Index: typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php =================================================================== --- typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php (revision 4834) +++ typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php (working copy) @@ -52,7 +52,7 @@ global $TYPO3_CONF_VARS; 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.'.
+ $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_display.'.
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.