Project

General

Profile

Bug #25005 » 17548.diff

Administrator Admin, 2011-02-11 15:11

View differences:

typo3/sysext/install/mod/class.tx_install.php (working copy)
$template = t3lib_parsehtml::getSubpart(
$templateFile, '###TEMPLATE###'
);
// Remove 'Skip wizard' link when not in step 1 or 2
if ($this->step != 1 && $this->step != 2) {
$noticeTemplate = '';
} else {
$noticeTemplate = t3lib_parsehtml::getSubpart(
$template, '###NOTICE_TEMPLATE###'
);
}
$template = t3lib_parsehtml::substituteSubpart($template, '###NOTICE_TEMPLATE###', $noticeTemplate);
// Define the markers content
$markers = array(
'stepHeader' => $this->stepHeader(),
typo3/sysext/install/Resources/Private/Templates/StepOutput.html (working copy)
###STEPHEADER###
<h3>###HEADER###</h3>
###STEP###
<!-- ###NOTICE_TEMPLATE### begin -->
<div id="t3-install-123-skip">
<a href="###SKIP123###">
###NOTICE###
</a>
</div>
<!-- ###NOTICE_TEMPLATE### end -->
<!-- ###TEMPLATE### end -->
<!-- ###STEP1### begin -->
(1-1/2)