Skip to content

Commit

Permalink
move protocol to client data directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred Neumann committed Sep 30, 2022
1 parent 1db3604 commit aefb954
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion classes/class.ilVhbShibAuthConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public function __construct($a_plugin_object)
$params[] = ilVhbShibAuthParam::_create(
'log_server_data',
'Logge Serverdaten',
'Protokolliere die Serverdaten unter ' . ILIAS_DATA_DIR . '/VhbShibAuth.log',
'Protokolliere die Serverdaten unter ' . CLIENT_DATA_DIR . '/VhbShibAuth.log',
ilVhbShibAuthParam::TYPE_BOOLEAN
);
$params[] = ilVhbShibAuthParam::_create(
Expand Down
2 changes: 1 addition & 1 deletion classes/class.ilVhbShibAuthPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function getMatching()
. "-------------------\n"
. $this->matching->getDataDump();

file_put_contents(ILIAS_DATA_DIR . '/VhbShibAuth.log', $content, FILE_APPEND);
file_put_contents(CLIENT_DATA_DIR . '/VhbShibAuth.log', $content, FILE_APPEND);
}


Expand Down

0 comments on commit aefb954

Please sign in to comment.