Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
t3o
my.typo3.org
Commits
a698df7d
Commit
a698df7d
authored
May 21, 2019
by
Thomas Löffler
Browse files
Correct parameter in select() method
parent
1673cf87
Changes
1
Hide whitespace changes
Inline
Side-by-side
extensions/t3o_ldap/Classes/Connectors/Ldap.php
View file @
a698df7d
...
...
@@ -603,7 +603,7 @@ class Ldap implements \Psr\Log\LoggerAwareInterface
$fromTable
=
'static_countries'
;
$queryBuilder
=
GeneralUtility
::
makeInstance
(
ConnectionPool
::
class
)
->
getQueryBuilderForTable
(
$fromTable
);
$ret
=
$queryBuilder
->
select
(
$selectFields
)
$ret
=
$queryBuilder
->
select
(
...
$selectFields
)
->
from
(
$fromTable
)
->
where
(
$queryBuilder
->
expr
()
->
eq
(
'cn_short_en'
,
$queryBuilder
->
createNamedParameter
(
$countryName
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment