Skip to content
Snippets Groups Projects
Verified Commit e9a7820d authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX path to custom log4php.xml

parent 798249d7
No related branches found
No related tags found
No related merge requests found
...@@ -418,14 +418,16 @@ class history ...@@ -418,14 +418,16 @@ class history
} }
if (file_exists( if (file_exists(
$_SESSION['config']['corepath']. DIRECTORY_SEPARATOR . 'custom' 'custom'
. DIRECTORY_SEPARATOR . $_SESSION['custom_override_id'] . DIRECTORY_SEPARATOR . $_SESSION['custom_override_id']
. DIRECTORY_SEPARATOR . "apps" . DIRECTORY_SEPARATOR . "apps"
. DIRECTORY_SEPARATOR . $_SESSION['config']['app_id'] . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id']
. DIRECTORY_SEPARATOR . "xml" . DIRECTORY_SEPARATOR . "xml"
. DIRECTORY_SEPARATOR . "log4php.xml" . DIRECTORY_SEPARATOR . "log4php.xml"
)) { )) {
$configFileLog4PHP = "apps" $configFileLog4PHP = 'custom'
. DIRECTORY_SEPARATOR . $_SESSION['custom_override_id']
. DIRECTORY_SEPARATOR . "apps"
. DIRECTORY_SEPARATOR . $_SESSION['config']['app_id'] . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id']
. DIRECTORY_SEPARATOR . "xml" . DIRECTORY_SEPARATOR . "xml"
. DIRECTORY_SEPARATOR . "log4php.xml"; . DIRECTORY_SEPARATOR . "log4php.xml";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment