Skip to content
GitLab
Menu
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
c245bb8a
Commit
c245bb8a
authored
Dec 10, 2018
by
Marc Egger
Browse files
Store.php: fixed problem with wrong config varname for DB.
parent
930881d2
Pipeline
#1113
passed with stage
in 1 minute and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/store/Store.php
View file @
c245bb8a
...
...
@@ -470,8 +470,8 @@ class Store {
*/
public
static
function
setAutoConfigValue
(
array
$config
)
{
$config
[
SYSTEM_DB_NAME_DATA
]
=
$config
[
'
SYSTEM_
DB_'
.
$config
[
SYSTEM_DB_INDEX_DATA
]
.
'_NAME'
]
??
''
;
$config
[
SYSTEM_DB_NAME_QFQ
]
=
$config
[
'
SYSTEM_
DB_'
.
$config
[
SYSTEM_DB_INDEX_QFQ
]
.
'_NAME'
]
??
''
;
$config
[
SYSTEM_DB_NAME_DATA
]
=
$config
[
'DB_'
.
$config
[
SYSTEM_DB_INDEX_DATA
]
.
'_NAME'
]
??
''
;
$config
[
SYSTEM_DB_NAME_QFQ
]
=
$config
[
'DB_'
.
$config
[
SYSTEM_DB_INDEX_QFQ
]
.
'_NAME'
]
??
''
;
return
$config
;
}
...
...
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