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
69f044dc
Commit
69f044dc
authored
Dec 20, 2019
by
Carsten Rose
Browse files
Merge branch 'B7925SplitpdfFileuploadError' into 'develop'
fix the cwd error in Logger See merge request
!224
parents
e681f952
9412abc2
Pipeline
#3081
failed with stages
in 7 minutes and 4 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
extension/Classes/Core/Database/Database.php
View file @
69f044dc
...
...
@@ -74,7 +74,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
);
...
...
extension/Classes/Core/Save.php
View file @
69f044dc
...
...
@@ -71,7 +71,7 @@ class Save {
$this
->
evaluate
=
new
Evaluate
(
$this
->
store
,
$this
->
db
);
$this
->
formAction
=
new
FormAction
(
$formSpec
,
$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
);
}
...
...
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