Skip to content

Set addQueryString back to true #333

New issue

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

Merged
merged 2 commits into from
Apr 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Classes/ViewHelpers/RequestUriForOverlayViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static function renderStatic(
): string {
$uriBuilder = self::getUriBuilder()
->reset()
->setAddQueryString('untrusted')
->setAddQueryString(true)
->setArguments([
'tx_maps2_maps2' => [
'mapProviderRequestsAllowedForMaps2' => 1,
Expand Down
5 changes: 5 additions & 0 deletions Documentation/ChangeLog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
ChangeLog
=========

Version 11.0.6
==============

* Set addQueryString back to "true". "untrusted" comes in with TYPO3 12 first

Version 11.0.5
==============

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Settings.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[general]
project = maps2 (Maps2)
version = 11.0
release = 11.0.5
release = 11.0.6
copyright = since 2013 by jweiland.net
t3author = Stefan Froemken
description = This TYPO3 extension supports the rendering of a map based on Google Maps or
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
$EM_CONF[$_EXTKEY] = [
'title' => 'Maps2',
'description' => 'Create maps with Marker, Area, Routes or Radius based on Google Maps or OpenStreetMap',
'version' => '11.0.5',
'version' => '11.0.6',
'category' => 'plugin',
'state' => 'stable',
'clearCacheOnLoad' => true,
Expand Down