Skip to content

Commit f22107e

Browse files
committed
[BUGFIX] Add missing quote
1 parent a88e763 commit f22107e

6 files changed

Lines changed: 82 additions & 2 deletions

File tree

Classes/Domain/Repository/AddressRepository.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,11 @@ public function getSqlQuery(Demand $demand): string
106106

107107
$queryBuilder = $queryParser->convertQueryToDoctrineQueryBuilder($query);
108108
$queryParameters = $queryBuilder->getParameters();
109+
$connection = $queryBuilder->getConnection();
109110
$params = [];
110111
foreach ($queryParameters as $key => $value) {
111112
// prefix array keys with ':'
112-
$params[':' . $key] = "'" . $value . "'";
113+
$params[':' . $key] = $connection->quote($value);
113114
unset($params[$key]);
114115
}
115116
// replace placeholders with real values

Documentation/Administration/Changelog/Index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@ Changelog
1111
:titlesonly:
1212
:glob:
1313

14+
v/10-0-1
1415
v/10-0-0
16+
v/9-1-1
1517
v/9-1-0
1618
v/9-0-1
1719
v/9-0-0
20+
v/8-1-2
1821
v/8-1-1
1922
v/8-1-0
2023
v/8-0-3
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
10.0.1 - 18th May 2026
2+
======================
3+
4+
This release
5+
6+
.. include:: /Includes.rst.txt
7+
8+
.. only:: html
9+
10+
.. contents::
11+
:local:
12+
:depth: 3
13+
14+
All Changes
15+
-----------
16+
This is a list of all changes in this release: ::
17+
18+
2026-05-18 [BUGFIX] Add missing quote
19+
20+
This list has been created by using:
21+
22+
.. code-block:: shell
23+
24+
git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
8.1.2 - 18th May 2026
2+
======================
3+
4+
.. include:: /Includes.rst.txt
5+
6+
.. only:: html
7+
8+
.. contents::
9+
:local:
10+
:depth: 3
11+
12+
13+
All Changes
14+
-----------
15+
This is a list of all changes in this release: ::
16+
17+
2026-05-18 [BUGFIX] Add missing quote
18+
19+
20+
This list has been created by using:
21+
22+
.. code-block:: shell
23+
24+
git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
9.1.1 - 18th May 2026
2+
=====================
3+
4+
.. include:: /Includes.rst.txt
5+
6+
.. only:: html
7+
8+
.. contents::
9+
:local:
10+
:depth: 3
11+
12+
13+
Important changes
14+
-----------------
15+
No important changes
16+
17+
All Changes
18+
-----------
19+
This is a list of all changes in this release: ::
20+
21+
2026-05-18 [BUGFIX] Add missing quote
22+
23+
24+
This list has been created by using:
25+
26+
.. code-block:: shell
27+
28+
git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
'state' => 'stable',
88
'author' => 'tt_address Development Team',
99
'author_email' => 'friendsof@typo3.org',
10-
'version' => '10.0.0',
10+
'version' => '10.0.1',
1111
'constraints' => [
1212
'depends' => [
1313
'typo3' => '13.4.20-14.4.99',

0 commit comments

Comments
 (0)