add patch to add overridable functions file

Cette révision appartient à :
Daniel Seifert 2022-08-01 22:31:32 +02:00 révisé par Daniel Seifert
révision 465c5c3981
Signé par: DanielS
ID de la clé GPG: 8A7C4C6ED1915C6F
1 fichiers modifiés avec 25 ajouts et 0 suppressions

25
overridablefunctions.patch Fichier normal
Voir le fichier

@ -0,0 +1,25 @@
From 28a69c0baf87543ab19d67abe729f8e8f05644f1 Mon Sep 17 00:00:00 2001
From: Daniel Seifert <git@daniel-seifert.com>
Date: Mon, 1 Aug 2022 22:19:00 +0200
Subject: [PATCH 1/1] add debug bar dependend overridable functions
---
source/modules/functions.php | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 source/modules/functions.php
diff --git a/source/modules/functions.php b/source/modules/functions.php
new file mode 100644
index 000000000..5bd5ada86
--- /dev/null
+++ b/source/modules/functions.php
@@ -0,0 +1,6 @@
+<?php
+
+$filePath = './modules/d3/debugbar/Modules/functions.php';
+if (file_exists($filePath)) {
+ include $filePath;
+}
--
2.26.1.windows.1