]> git.openstreetmap.org Git - nominatim.git/commitdiff
reenable debug parameter
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 8 Jul 2020 06:32:46 +0000 (08:32 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 8 Jul 2020 06:32:46 +0000 (08:32 +0200)
The parameter got lost when switching to website settings.
Given that the use of a fixed parameter is limited,
debugging output can now only be set via the URL parameter.

cmake/website.tmpl
lib/setup/SetupClass.php
settings/defaults.php

index 8692280d41a4026f55095d0772c9de301e771696..8b94658485ac7f7daabc89397a246defffbf7780 100755 (executable)
@@ -1,3 +1,5 @@
 <?php
+@define('CONST_Debug', (isset($_GET['debug']) && $_GET['debug']));
 require_once(dirname(dirname(__FILE__)).'/website/settings-frontend.php');
+
 require_once(CONST_BasePath.'/@script_source@');
index 16c4872982a0413d039c205153164a6510287ab7..ea47e8283669226e1506584815d0a8c0dc16bed5 100755 (executable)
@@ -707,7 +707,6 @@ class SetupFunctions
 @define('CONST_BasePath', '".CONST_BasePath."');
 if (file_exists(getenv('NOMINATIM_SETTINGS'))) require_once(getenv('NOMINATIM_SETTINGS'));
 
-@define('CONST_Debug', ". (CONST_Debug? 'true' : 'false').");
 @define('CONST_Database_DSN', '".CONST_Database_DSN."'); // or add ;host=...;port=...;user=...;password=...
 @define('CONST_Default_Language', ".(CONST_Default_Language ? 'true' : 'false').");
 @define('CONST_Default_Lat', ".CONST_Default_Lat.");
index f5220cd0160937166c83317672eae19a4caa1776..7a7a1e6f757f7591b6dfdd813a13ffd29f8c5429 100644 (file)
@@ -3,10 +3,8 @@
 @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 (isset($_GET['debug']) && $_GET['debug']) @define('CONST_Debug', true);
 
 // General settings
-@define('CONST_Debug', false);
 @define('CONST_Database_DSN', 'pgsql:dbname=nominatim'); // or add ;host=...;port=...;user=...;password=...
 @define('CONST_Database_Web_User', 'www-data');
 @define('CONST_Database_Module_Path', CONST_InstallPath.'/module');