Skip to content
Snippets Groups Projects
Commit a26cf282 authored by Benni Mack's avatar Benni Mack Committed by Christian Kuhn
Browse files

[BUGFIX] Use Fluid standalone TagBuilder object

When instantiating the tag-based viewhelpers and
extbase is in the game, the class alias map is not
taken place, because there is a class expected
which is only in the class alias map, but not
existing anymore.

Instead, the Fluid standalone's TagBuilder object
should be used.

Resolves: #81350
Releases: master, 8.7
Change-Id: I1d3d73a65b4948474dd68c42f43ead454c842ecb
Reviewed-on: https://review.typo3.org/52946


Reviewed-by: default avatarJohannes Schlier <johannes.schlier@b13.de>
Tested-by: default avatarJohannes Schlier <johannes.schlier@b13.de>
Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChrister V <cvi@systime.dk>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent ad1fd9ca
Branches
Tags
No related merge requests found
......@@ -39,7 +39,7 @@ abstract class AbstractTagBasedViewHelper extends AbstractViewHelper
protected $tagName = 'div';
/**
* @var TagBuilder
* @var \TYPO3Fluid\Fluid\Core\ViewHelper\TagBuilder
*/
protected $tag;
......@@ -53,7 +53,7 @@ abstract class AbstractTagBasedViewHelper extends AbstractViewHelper
*/
public function __construct()
{
$this->tag = new TagBuilder();
$this->tag = new \TYPO3Fluid\Fluid\Core\ViewHelper\TagBuilder();
}
/**
......
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