adasd
All checks were successful
Deploy / deploy-staging (push) Successful in 48s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-07-13 22:51:40 +02:00
parent e0afaca57b
commit 554664737a
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
require_once dirname(__DIR__, 3) . '/src/App/bootstrap.php';
require_once dirname(__DIR__, 4) . '/src/App/bootstrap.php';
require_once dirname(__DIR__) . '/bootstrap.php';
$requestUri = (string) ($_SERVER['REQUEST_URI'] ?? '');

View File

@@ -2,14 +2,14 @@
declare(strict_types=1);
require_once dirname(__DIR__, 3) . '/src/App/bootstrap.php';
require_once dirname(__DIR__, 4) . '/src/App/bootstrap.php';
require_once dirname(__DIR__) . '/bootstrap.php';
use ModulesCore\ModuleHttp;
session_start();
$projectRoot = dirname(__DIR__, 3);
$projectRoot = dirname(__DIR__, 4);
ModuleHttp::requireDesktopAccess($projectRoot);
$isPartial = !empty($_GET['partial']);