fix: import of translations for cronjobs was missing (#321)
refactor: retrieval of webroot path chore: add sqlite to docker image
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
$databaseFile = '/var/www/html/db/wallos.db';
|
||||
$databaseFile = __DIR__ . '/../db/wallos.db';
|
||||
$db = new SQLite3($databaseFile);
|
||||
$db->busyTimeout(5000);
|
||||
|
||||
@@ -8,4 +8,8 @@ if (!$db) {
|
||||
die('Connection to the database failed.');
|
||||
}
|
||||
|
||||
require_once __DIR__ . '/../includes/i18n/languages.php';
|
||||
require_once __DIR__ . '/../includes/i18n/getlang.php';
|
||||
require_once __DIR__ . '/../includes/i18n/' . $lang . '.php';
|
||||
|
||||
?>
|
||||
@@ -1,3 +1,3 @@
|
||||
<?php
|
||||
$version = "v1.27.0";
|
||||
$version = "v1.27.1";
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user