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
9412abc2
Commit
9412abc2
authored
Feb 21, 2019
by
Marc Egger
Browse files
fix the cwd error in Logger
parent
f23f0c7d
Pipeline
#1552
failed with stage
in 2 minutes and 10 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Source/core/Save.php
View file @
9412abc2
...
...
@@ -59,7 +59,7 @@ class Save {
$this
->
db
=
new
Database
(
$formSpec
[
F_DB_INDEX
]);
$this
->
evaluate
=
new
Evaluate
(
$this
->
store
,
$this
->
db
);
$this
->
qfqLogFilename
=
$this
->
store
->
getVar
(
SYSTEM_QFQ_LOG
,
STORE_SYSTEM
);
$this
->
qfqLogFilename
=
$this
->
store
->
getVar
(
SYSTEM_SITE_PATH
,
STORE_SYSTEM
)
.
'/'
.
$this
->
store
->
getVar
(
SYSTEM_QFQ_LOG
,
STORE_SYSTEM
);
}
...
...
extension/Source/core/database/Database.php
View file @
9412abc2
...
...
@@ -78,7 +78,7 @@ class Database {
$this
->
store
=
Store
::
getInstance
();
$storeSystem
=
$this
->
store
->
getStore
(
STORE_SYSTEM
);
$this
->
sqlLog
=
$storeSystem
[
SYSTEM_SQL_LOG
];
$this
->
sqlLog
=
$storeSystem
[
SYSTEM_SITE_PATH
]
.
'/'
.
$storeSystem
[
SYSTEM_SQL_LOG
];
$dbInit
=
$storeSystem
[
SYSTEM_DB_INIT
];
$config
=
$this
->
getConnectionDetails
(
$dbIndex
,
$storeSystem
);
...
...
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