changed includes

This commit is contained in:
Roland Gruber 2018-12-22 21:33:07 +01:00
parent 680b99aba3
commit d3608c7bd0
3 changed files with 8 additions and 8 deletions

View File

@ -33,9 +33,9 @@ use \htmlTitle;
*/ */
/** security functions */ /** security functions */
include_once("../../lib/security.inc"); include_once(__DIR__ . "/../../lib/security.inc");
/** access to configuration options */ /** access to configuration options */
include_once("../../lib/config.inc"); include_once(__DIR__ . "/../../lib/config.inc");
// start session // start session
startSecureSession(); startSecureSession();

View File

@ -42,9 +42,9 @@ use \htmlResponsiveRow;
*/ */
/** security functions */ /** security functions */
include_once("../../lib/security.inc"); include_once(__DIR__ . "/../../lib/security.inc");
/** access to configuration options */ /** access to configuration options */
include_once("../../lib/config.inc"); include_once(__DIR__ . "/../../lib/config.inc");
// start session // start session
startSecureSession(); startSecureSession();

View File

@ -37,13 +37,13 @@ use function \LAM\SCHEMA\get_cached_schema;
*/ */
/** security functions */ /** security functions */
include_once("../../lib/security.inc"); include_once(__DIR__ . "/../../lib/security.inc");
/** access to configuration options */ /** access to configuration options */
include_once("../../lib/config.inc"); include_once(__DIR__ . "/../../lib/config.inc");
/** account modules */ /** account modules */
include_once("../../lib/modules.inc"); include_once(__DIR__ . "/../../lib/modules.inc");
/** LDAP schema */ /** LDAP schema */
include_once("../../lib/schema.inc"); include_once(__DIR__ . "/../../lib/schema.inc");
// start session // start session
startSecureSession(); startSecureSession();