Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
TYPO3
df_tabs
Commits
8ab92ce1
Commit
8ab92ce1
authored
Sep 02, 2020
by
Kevin Ditscheid
Browse files
[BUGFIX] Fix deprecated curly braces usage in PHP array
Fixes:
#5
parent
d53acb81
Changes
1
Hide whitespace changes
Inline
Side-by-side
Classes/Service/ConfigurationService.php
View file @
8ab92ce1
...
...
@@ -103,7 +103,7 @@ class ConfigurationService {
protected
function
getTypoScriptConfiguration
()
{
$configuration
=
(
array
)
$this
->
controllerContext
->
conf
;
foreach
(
$configuration
as
$key
=>
&
$option
)
{
if
(
$key
{
\
strlen
(
$key
)
-
1
}
!==
'.'
&&
isset
(
$configuration
[
$key
.
'.'
]))
{
if
(
$key
[
\
strlen
(
$key
)
-
1
]
!==
'.'
&&
isset
(
$configuration
[
$key
.
'.'
]))
{
$option
=
$this
->
controllerContext
->
cObj
->
stdWrap
(
$option
,
$configuration
[
$key
.
'.'
]);
}
}
...
...
Write
Preview
Supports
Markdown
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