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
typo3_roadmap
Commits
f85ddec4
Commit
f85ddec4
authored
Sep 18, 2019
by
Stefan Busemann
Browse files
Apply suggestion to Classes/Controller/FeatureController.php
parent
f301685b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Classes/Controller/FeatureController.php
View file @
f85ddec4
...
...
@@ -63,7 +63,7 @@ class FeatureController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionControll
$features
=
[];
$ids
=
explode
(
','
,
$this
->
settings
[
'feature'
]);
foreach
(
$ids
as
$key
=>
$id
)
{
$features
[
$id
]
=
$this
->
featureRepository
->
findByUid
(
$id
);
$features
[
$id
]
=
$this
->
featureRepository
->
findByUid
(
(
int
)
$id
);
}
$this
->
view
->
assign
(
'features'
,
$features
);
}
...
...
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