Skip to content
Snippets Groups Projects
Commit 75332822 authored by Wouter Wolters's avatar Wouter Wolters Committed by Jan Helke
Browse files

[TASK] Remove DocumentTemplate section in Wizard controllers

Calls to section() are removed in SortPagesWizardModuleFunction and
CreatePagesWizardModuleFunctionController

Resolves: #71180
Resolves: #71178
Releases: master
Change-Id: I0adc20dd157c629ea7b2e55b9878fe9be8227816
Reviewed-on: https://review.typo3.org/44429


Reviewed-by: default avatarMichael Oehlhof <typo3@oehlhof.de>
Tested-by: default avatarMichael Oehlhof <typo3@oehlhof.de>
Reviewed-by: default avatarDaniel Goerz <ervaude@gmail.com>
Tested-by: default avatarDaniel Goerz <ervaude@gmail.com>
Reviewed-by: default avatarGernot Schulmeister <gernotschulmeister@gmx.at>
Tested-by: default avatarGernot Schulmeister <gernotschulmeister@gmx.at>
Reviewed-by: default avatarJan Helke <typo3@helke.de>
Tested-by: default avatarJan Helke <typo3@helke.de>
parent 7103f958
Branches
Tags
No related merge requests found
......@@ -176,7 +176,7 @@ class CreatePagesWizardModuleFunctionController extends \TYPO3\CMS\Backend\Modul
// CSH
$theCode .= BackendUtility::cshItem('_MOD_web_func', 'tx_wizardcrpages', null, '<div class="t3-help">|</div>');
$out = $this->pObj->doc->header($this->getLanguageService()->getLL('wiz_crMany'));
$out .= $this->pObj->doc->section('', $theCode, false, true);
$out .= '<div>' . $theCode . '</div>';
return $out;
}
......
......@@ -104,9 +104,9 @@ class SortPagesWizardModuleFunction extends \TYPO3\CMS\Backend\Module\AbstractFu
}
// CSH:
$theCode .= BackendUtility::cshItem('_MOD_web_func', 'tx_wizardsortpages', null, '<br />|');
$out .= $this->pObj->doc->section('', $theCode, false, true);
$out .= '<div>' . $theCode . '</div>';
} else {
$out .= $this->pObj->doc->section('', 'Sorry, this function is not available in the current draft workspace!', false, true, 1);
$out .= '<div>Sorry, this function is not available in the current draft workspace!</div>';
}
return $out;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment