Bug #18331 ยป 7701.diff
t3lib/class.t3lib_befunc.php (working copy) | ||
---|---|---|
} else {
|
||
$warrantyNote = 'TYPO3 comes with ABSOLUTELY NO WARRANTY; <a href="http://typo3.com/1316.0.html" target="_blank">click for details.</a>';
|
||
}
|
||
$cNotice = '<a href="http://typo3.com/" target="_blank"><img src="gfx/loginlogo_transp.gif" width="75" vspace="2" hspace="4" height="19" alt="TYPO3 logo" align="left" />TYPO3 CMS ver. '.htmlspecialchars(TYPO3_version).'</a>. Copyright © '.htmlspecialchars(TYPO3_copyright_year).' Kasper Skårhøj. Extensions are copyright of their respective owners. Go to <a href="http://typo3.com/" target="_blank">http://typo3.com/</a> for details.
|
||
$cNotice = '<a href="http://typo3.com/" target="_blank"><img src="gfx/loginlogo_transp.gif" width="75" vspace="2" hspace="4" height="19" alt="TYPO3 logo" align="left" />TYPO3 CMS ver. '.htmlspecialchars(TYPO3_version_display).'</a>. Copyright © '.htmlspecialchars(TYPO3_copyright_year).' Kasper Skårhøj. Extensions are copyright of their respective owners. Go to <a href="http://typo3.com/" target="_blank">http://typo3.com/</a> for details.
|
||
'.strip_tags($warrantyNote, '<a>').' This is free software, and you are welcome to redistribute it under certain conditions; <a href="http://typo3.com/1316.0.html" target="_blank">click for details</a>. Obstructing the appearance of this notice is prohibited by law.';
|
||
return $cNotice;
|
t3lib/class.t3lib_htmlmail.php (working copy) | ||
---|---|---|
public function t3lib_htmlmail() {
|
||
$this->forceReturnPath = $GLOBALS['TYPO3_CONF_VARS']['SYS']['forceReturnPath'];
|
||
$this->mailer = 'TYPO3 '.TYPO3_version;
|
||
$this->mailer = 'TYPO3 '.TYPO3_version_display;
|
||
}
|
||
t3lib/config_default.php (working copy) | ||
---|---|---|
$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);
|
typo3/alt_intro.php (working copy) | ||
---|---|---|
$this->content.= $TBE_TEMPLATE->startPage('About modules');
|
||
$this->content .= '
|
||
<h1>TYPO3 '.TYPO3_version.'<br />'.$LANG->getLL('introtext').'</h1>
|
||
<h1>TYPO3 '.TYPO3_version_display . '<br />'.$LANG->getLL('introtext').'</h1>
|
||
<p>'.t3lib_BEfunc::TYPO3_copyRightNotice().'</p>';
|
||
typo3/alt_main.php (working copy) | ||
---|---|---|
$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);
|
typo3/backend.php (working copy) | ||
---|---|---|
// 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:
|
typo3/sysext/install/mod/class.tx_install.php (working copy) | ||
---|---|---|
<td bgcolor="#F4F0E8">
|
||
<div align="center"><span class="size4text"><strong>TYPO3 '.TYPO3_branch.' Install Tool</strong></span></div>
|
||
<div align="center"><span style="color:navy;"><strong>Site: '.$GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'].'</strong></span></div>
|
||
'.($this->passwordOK ? '<div align="center"><span style="color:navy;"><strong>Version: '.TYPO3_version.'</strong></span></div>':'').'<br />
|
||
'.($this->passwordOK ? '<div align="center"><span style="color:navy;"><strong>Version: '.TYPO3_version_display.'</strong></span></div>':'').'<br />
|
||
'.($this->step?$this->stepHeader():$this->menu()).$content.'<hr />'.$this->note123().$this->endNotes().'
|
||
</td>
|
typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php (working copy) | ||
---|---|---|
global $TYPO3_CONF_VARS;
|
||
if ($this->compatVersionIsCurrent()) {
|
||
$description = '<strong>Up to date!</strong><br />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.'.<br />
|
||
$description = '<strong>Up to date!</strong><br />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.'.<br />
|
||
There are two possibilities that you see this screen:<ol><li><b>You just updated from a previous version of TYPO3:</b>
|
||
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 <b>recommended</b> 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.
|