DMKEBUSINESSGMBH / typo3-mkforms

https://www.dmk-ebusiness.de
3 stars 6 forks source link

bug fix for typo3 11 #161

Open AntonMezger opened 1 year ago

AntonMezger commented 1 year ago

Hi,

In typo3 version 11 the function \Sys25\RnBase\Utility\T3General::linkThisUrl was removed. I replaced the function in class.tx_mkforms_widgets_lister_Main.php as follows:

$url = GeneralUtility::makeInstance(ContentObjectRenderer::class)->getTypoLink_URL($sBaseUrl, $aFullParams); return $this->oForm->xhtmlUrl($url); / return $this->oForm->xhtmlUrl( \Sys25\RnBase\Utility\T3General::linkThisUrl( $sBaseUrl, $aFullParams ) ); /

hope this helps