Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
typo3.org
t3o_membership
Commits
ba3cb149
Commit
ba3cb149
authored
Dec 20, 2019
by
Thomas Löffler
Browse files
Remove cast to integer for all fields in update query
parent
b0ed0341
Changes
1
Hide whitespace changes
Inline
Side-by-side
Classes/Task/ImportMembersTask.php
View file @
ba3cb149
...
...
@@ -168,8 +168,7 @@ class ImportMembersTask extends Task
->
update
(
'tx_t3omembership_domain_model_member'
,
$memberData
,
[
'uid'
=>
(
int
)
$memberUid
],
[
Connection
::
PARAM_INT
]
[
'uid'
=>
(
int
)
$memberUid
]
);
}
else
{
$datebaseConnection
=
$this
->
getDatabaseConnection
()
...
...
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