From fab5c686e2f70854ee6434c758143a43a59c2559 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Tue, 25 Feb 2025 13:31:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20the=20path=20of=20the=20co?= =?UTF-8?q?nfig=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit WIll chance once it'll be autogenerated --- kernel/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/lib.php b/kernel/lib.php index 7edf9fc..9ebaac0 100644 --- a/kernel/lib.php +++ b/kernel/lib.php @@ -40,7 +40,7 @@ function html_deep($value) { } function opendb() { // Open database connection. - include('config.php'); + include('../config.php'); extract($dbsettings); // Créer une connexion à la base de données @@ -55,7 +55,7 @@ function opendb() { // Open database connection. } function doquery($query, $table) { // Something of a tiny little database abstraction layer. - include('config.php'); + include('../config.php'); global $numqueries; // Remplacer {{table}} par le préfixe de la table