dev/patrick #1

Merged
lukas.uptmoor merged 69 commits from dev/patrick into main 2026-04-20 16:32:31 +02:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit a0cbe29f97 - Show all commits

View File

@@ -5,7 +5,7 @@
// Reads Environment Configfile // Reads Environment Configfile
$envFile = __DIR__ . '/../.env'; $envFile = __DIR__ . '/../../.env';
if (file_exists($envFile)) { if (file_exists($envFile)) {
$lines = file($envFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); $lines = file($envFile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
foreach ($lines as $line) { foreach ($lines as $line) {

View File

@@ -5,7 +5,7 @@
// Renders Leaflet Map Interface including Leaflet Plugins // Renders Leaflet Map Interface including Leaflet Plugins
// ===================================================================== // =====================================================================
require_once __DIR__ . '/../api/db.php'; require_once __DIR__ . '/api/db.php';
// ----------------------------------------------------------------- // -----------------------------------------------------------------
// Loads Municipality Configuration // Loads Municipality Configuration

View File

@@ -14,7 +14,7 @@
// ===================================================================== // =====================================================================
// API Endpoint as relative Path // API Endpoint as relative Path
var API_URL = '../api/contributions.php'; var API_URL = 'api/contributions.php';
// Current User Name, set via Login Modal, stored in sessionStorage // Current User Name, set via Login Modal, stored in sessionStorage
var currentUser = sessionStorage.getItem('webgis_user') || ''; var currentUser = sessionStorage.getItem('webgis_user') || '';