FluidTYPO3 / vhs

TYPO3 extension VHS: Fluid ViewHelpers
https://fluidtypo3.org
Other
189 stars 228 forks source link

v:render.request broken on TYPO3v10 #1697

Closed mbrodala closed 2 years ago

mbrodala commented 3 years ago

The RequestViewHelper calls Request::setControllerVendorName() which has been dropped with TYPO3v10:

Call to undefined method TYPO3\CMS\Extbase\Mvc\Web\Request::setControllerVendorName()

Due to this the viewhelper is currently not usable on TYPO3v10.

develth commented 3 years ago

Any News on this? Patch is working with some edits (thanks @mbrodala), but would be nice to have this in the repo

typecat commented 2 years ago

Following patch worked for me: remove $request->setControllerVendorName($vendorName); and to set a controller alias via $request->setControllerAliasToClassNameMapping.

NamelessCoder commented 2 years ago

Solved by https://github.com/FluidTYPO3/vhs/pull/1707