Skip to content
Snippets Groups Projects
Commit acf21cb5 authored by Georg Ringer's avatar Georg Ringer Committed by Andreas Fernandez
Browse files

[TASK] Fix not case sensitive method calls

Resolves: #77699
Releases: master
Change-Id: I4f9aa68788c483061d86239330b8a6d650d8a24f
Reviewed-on: https://review.typo3.org/49663


Reviewed-by: default avatarMorton Jonuschat <m.jonuschat@mojocode.de>
Tested-by: default avatarMorton Jonuschat <m.jonuschat@mojocode.de>
Tested-by: default avatarBamboo TYPO3com <info@typo3.com>
Reviewed-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
Tested-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
parent 19efc065
Branches
Tags
No related merge requests found
......@@ -35,7 +35,7 @@ class TcaColumnsProcessFieldLabels implements FormDataProviderInterface
{
$result = $this->setLabelFromShowitemAndPalettes($result);
$result = $this->setLabelFromPageTsConfig($result);
$result = $this->translatelabels($result);
$result = $this->translateLabels($result);
return $result;
}
......
......@@ -43,8 +43,8 @@ class WidgetRequestBuilder extends \TYPO3\CMS\Extbase\Mvc\Web\RequestBuilder
public function build()
{
$request = $this->objectManager->get(\TYPO3\CMS\Fluid\Core\Widget\WidgetRequest::class);
$request->setRequestURI(GeneralUtility::getIndpEnv('TYPO3_REQUEST_URL'));
$request->setBaseURI(GeneralUtility::getIndpEnv('TYPO3_SITE_URL'));
$request->setRequestUri(GeneralUtility::getIndpEnv('TYPO3_REQUEST_URL'));
$request->setBaseUri(GeneralUtility::getIndpEnv('TYPO3_SITE_URL'));
$request->setMethod(isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : null);
if (strtolower($_SERVER['REQUEST_METHOD']) === 'post') {
$request->setArguments(GeneralUtility::_POST());
......
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