Merge branch 'master' into copilot/create-database-file-connection

This commit is contained in:
2026-01-24 13:52:01 +01:00
committed by GitHub
46 changed files with 362 additions and 402 deletions

View File

@@ -48,5 +48,3 @@ $config['SQL_db'] = "postgres";
$config['admin_mail'] = "leo@lstronic.com";
$config['bot_mail'] = "robot@kabano.com";
?>

View File

@@ -1,4 +1,4 @@
<?
<?php
function generate_image_thumbnail($source_image_path, $thumbnail_image_path, $width, $height)
{
@@ -38,5 +38,3 @@ function generate_image_thumbnail($source_image_path, $thumbnail_image_path, $wi
imagedestroy($thumbnail_gd_image);
return true;
}
?>

View File

@@ -89,5 +89,3 @@ $poi_types = array(
)
);
?>

View File

@@ -1,4 +1,4 @@
<?
<?php
/*****
** This file contains the routing from any request to the correct view and controller
@@ -70,5 +70,3 @@ if($notfound) {
$head['title'] = $wikiPage->name;
include ($config['views_folder']."d.wiki.view.html");
}
?>

View File

@@ -1,4 +1,4 @@
<?
<?php
require_once($config['models_folder']."d.users.php");
@@ -33,6 +33,3 @@ if (PHP_VERSION_ID < 80000) {
}
$user->datetime_format = new IntlDateFormatter($config['locale'], IntlDateFormatter::LONG, IntlDateFormatter::SHORT, $config['timezone']);
$user->datetimeshort_format = new IntlDateFormatter($config['locale'], IntlDateFormatter::SHORT, IntlDateFormatter::SHORT, $config['timezone']);
?>