Project

General

Profile

Bug #24834 ยป 17338.diff

Administrator Admin, 2011-01-26 14:10

View differences:

t3lib/mail/class.t3lib_mail_swiftmaileradapter.php (Arbeitskopie)
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();
typo3/sysext/t3skin/extjs/xtheme-t3skin.css (Arbeitskopie)
-webkit-border-radius: 1px;
border-radius: 1px;
color: #434343;
position: relative;
}
.x-btn-icon {
......
color: #1e1e1e;
}
.x-btn-click {
top: 1px;
left: 1px;
}
.x-btn-disabled *{
color:gray !important;
}
typo3/sysext/install/updates/class.tx_coreupdates_compatversion.php (Arbeitskopie)
function checkForUpdate(&$description) {
global $TYPO3_CONF_VARS;
if ($this->compatVersionIsCurrent()) {
if (!$this->compatVersionIsCurrent()) {
$description = '
<p>
<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 />
There are two possibilities that you see this screen:
</p>
<ol>
<li>
<strong>You just updated from a previous version of
TYPO3:</strong>
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 <strong>recommended</strong> 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.
<em>Please continue to step two.</em>
</li>
<li>
<strong>You just made a fresh install of TYPO3:</strong>
Perfect! All new features will be used.
<em>You can stop here and do not need this wizard now.</em>
</li>
</ol>
';
if (!$TYPO3_CONF_VARS['SYS']['compat_version']) {
$description .= '
<p>
The compatibility version has been set to the current
TYPO3 version. This is a stamp and has no impact for
your installation.
</p>
';
}
} else {
$description = '
<p>
Your current TYPO3 installation is configured to
<strong>behave like version
' . htmlspecialchars($TYPO3_CONF_VARS['SYS']['compat_version']) . '
......
features.
</p>
';
return 1;
}
return 1; // Return 1 in any case so user has possibility to switch back to a previous compat_version.
return 0;
}
/**
    (1-1/1)