Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
2a8cfbf1
Commit
2a8cfbf1
authored
Jun 14, 2018
by
Carsten Rose
Browse files
Bug: custom variables enclosed in ticks now are now stripped of the ticks.
parent
71eb0d9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/store/Config.php
View file @
2a8cfbf1
...
...
@@ -60,7 +60,7 @@ class Config {
if
(
!
empty
(
$arr
[
0
])
&&
!
empty
(
$arr
[
1
]))
{
$arr
[
0
]
=
trim
(
$arr
[
0
]);
$arr
[
1
]
=
trim
(
$arr
[
1
]);
$arr
[
1
]
=
OnString
::
trimQuote
(
trim
(
$arr
[
1
])
)
;
if
(
isset
(
$config
[
$arr
[
0
]]))
{
throw
new
UserReportException
(
"Variable '
$arr[0]
' already defined"
,
ERROR_INVALID_OR_MISSING_PARAMETER
);
...
...
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