From d9e15d32cd4a09efe53634d67b3f8c5e741f53d0 Mon Sep 17 00:00:00 2001 From: nobody Date: Wed, 7 Oct 2020 22:38:43 -0700 Subject: [PATCH] add optional startup file that's loaded before anything else --- boot.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/boot.php b/boot.php index 0861e6017..a63720664 100755 --- a/boot.php +++ b/boot.php @@ -608,6 +608,10 @@ define ( 'DBTYPE_POSTGRES', 1 ); function sys_boot() { + // this file may not exist + + @include('.htstartup.php'); + // our central App object App::init();