We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code example from a 3rd party plugin:
<f:for each="{tags}" as="tag"> <blog:link.tag tag="{tag}" class="blog-tag"> {tag.title} </blog:link.tag> </f:for>
This would create a url with a wrong plugin prefix:
/de/tags/?tx_blogextender_tags%5Baction%5D=listPostsByTag&tx_blogextender_tags%5Bcontroller%5D=Post&tx_blog_tag%5Btag%5D=1&cHash=xxx
To display posts by tag correctly, it should always look like:
/de/tags/?tx_blog_tag%5Baction%5D=listPostsByTag&tx_blog_tag%5Bcontroller%5D=Post&tx_blog_tag%5Btag%5D=1&cHash=xxx
The problem is that a call UriBuilder misses $extensionName parameter.
$extensionName
The text was updated successfully, but these errors were encountered:
[BUGFIX] Fix TYPO3GmbH#5: tag link viewhelper creates a wrong link ou…
aadad12
…tside of EXT:blog plugins
ccd6b35
@dmitryd thx a lot - the patch is merged
Sorry, something went wrong.
No branches or pull requests
Code example from a 3rd party plugin:
This would create a url with a wrong plugin prefix:
To display posts by tag correctly, it should always look like:
The problem is that a call UriBuilder misses
$extensionName
parameter.The text was updated successfully, but these errors were encountered: