6 lines
162 B
PHP
6 lines
162 B
PHP
|
<?php
|
||
|
define('GLPI_CONFIG_DIR', '/etc/glpi/');
|
||
|
|
||
|
if (file_exists(GLPI_CONFIG_DIR . '/local_define.php')) {
|
||
|
require_once GLPI_CONFIG_DIR . '/local_define.php';
|
||
|
}
|