forked from hans/Nominatim
reinstate NOMINATIM_SETTINGS variable
Move sourcing of this script to settings.php so that it is loaded before anything else.
This commit is contained in:
@@ -1,9 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
if (file_exists(getenv('NOMINATIM_SETTINGS')))
|
|
||||||
{
|
|
||||||
require_once(getenv('NOMINATIM_SETTINGS'));
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once('init.php');
|
require_once('init.php');
|
||||||
require_once('cmd.php');
|
require_once('cmd.php');
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
@define('CONST_BasePath', '@CMAKE_SOURCE_DIR@');
|
@define('CONST_BasePath', '@CMAKE_SOURCE_DIR@');
|
||||||
@define('CONST_InstallPath', '@CMAKE_BINARY_DIR@');
|
@define('CONST_InstallPath', '@CMAKE_BINARY_DIR@');
|
||||||
|
if (file_exists(getenv('NOMINATIM_SETTINGS'))) require_once(getenv('NOMINATIM_SETTINGS'));
|
||||||
if (file_exists(CONST_InstallPath.'/settings/local.php')) require_once(CONST_InstallPath.'/settings/local.php');
|
if (file_exists(CONST_InstallPath.'/settings/local.php')) require_once(CONST_InstallPath.'/settings/local.php');
|
||||||
if (isset($_GET['debug']) && $_GET['debug']) @define('CONST_Debug', true);
|
if (isset($_GET['debug']) && $_GET['debug']) @define('CONST_Debug', true);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user