Merge branch 'qvarforth-main' into fixes
This commit is contained in:
commit
f1cdc9bc2c
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php";
|
||||
require "../../includes/bootstrap.php";
|
||||
|
||||
$response = [];
|
||||
$station = StationRepository::getInstance()->getObjectById($_GET['id'] ?? null);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php";
|
||||
require "../../includes/bootstrap.php";
|
||||
|
||||
if (isset($_GET['id']) && isInt($_GET['id'])) {
|
||||
$station = StationRepository::getInstance()->getObjectById($_GET['id']);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php";
|
||||
require "../../includes/bootstrap.php";
|
||||
|
||||
$response = [];
|
||||
$station = StationRepository::getInstance()->getObjectById($_GET['id'] ?? null);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../includes/bootstrap.php"; ?>
|
||||
<?php
|
||||
$isSecure = false;
|
||||
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<title>About / FAQ</title>
|
||||
<div class="modal-inner-content modal-inner-content-about" style="padding-bottom: 30px;">
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<?php
|
||||
$stations = [];
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<?php $station = StationRepository::getInstance()->getObjectById($_GET['id'] ?? null); ?>
|
||||
<?php if ($station->isExistingObject()) : ?>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<?php $station = StationRepository::getInstance()->getObjectById($_GET['id'] ?? null); ?>
|
||||
<?php if ($station->isExistingObject()) : ?>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<?php
|
||||
$stations = [];
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<?php $station = StationRepository::getInstance()->getObjectById($_GET['id'] ?? null); ?>
|
||||
<?php if ($station->isExistingObject()) : ?>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<?php $station = StationRepository::getInstance()->getObjectById($_GET['id'] ?? null); ?>
|
||||
<?php if ($station->isExistingObject()) : ?>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<?php $station = StationRepository::getInstance()->getObjectById($_GET['id'] ?? null); ?>
|
||||
<?php if ($station->isExistingObject()) : ?>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?php require "${_SERVER["DOCUMENT_ROOT"]}/../includes/bootstrap.php"; ?>
|
||||
<?php require "../../includes/bootstrap.php"; ?>
|
||||
|
||||
<?php $station = StationRepository::getInstance()->getObjectById($_GET['id'] ?? null); ?>
|
||||
<?php if ($station->isExistingObject()) : ?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue