Skip to content
GitLab
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
b5d798d5
Commit
b5d798d5
authored
Jun 27, 2015
by
Thomas Löffler
Browse files
[BUGFIX] Adds check for not empty string
parent
6af0223b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Classes/Task/ImportMembersTask.php
View file @
b5d798d5
...
...
@@ -41,7 +41,7 @@ class Tx_T3oMembership_Task_ImportMembersTask extends tx_scheduler_Task {
$member
=
array
(
'name'
=>
$fields
[
6
],
'external_id'
=>
(
int
)
$fields
[
0
],
'address'
=>
$fields
[
7
]
?
$fields
[
7
]
:
$fields
[
8
],
'address'
=>
$fields
[
7
]
!==
''
?
$fields
[
7
]
:
$fields
[
8
],
'zip'
=>
$fields
[
10
],
'city'
=>
$fields
[
11
],
'end_date'
=>
strtotime
(
$fields
[
16
]),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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