From 31670ca7a0cb326c650a4547e54ed8d656c385ad Mon Sep 17 00:00:00 2001 From: Guy Van Sanden Date: Thu, 16 Apr 2026 16:26:50 +0200 Subject: [PATCH] v1.0.24 - green border + logging in boot() --- appinfo/info.xml | 2 +- lib/AppInfo/Application.php | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index f148563..ea0d47b 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -4,7 +4,7 @@ Minimal Profile Hides profile fields to create a minimal user profile Allows administrators to hide profile fields like pronouns, social links, etc. - 1.0.23 + 1.0.24 AGPL Your Name MinimalProfile diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index 7258bac..3045175 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -47,7 +47,9 @@ class Application extends App implements IBootstrap { } if ($css) { - Util::addInlineStyle('minimalprofile', $css); + Util::addInlineStyle($css); } + + file_put_contents('/tmp/mp_boot.log', date('Y-m-d H:i:s') . ' boot ran, hidden: ' . print_r($hidden, true) . ", css: $css\n", FILE_APPEND); } } \ No newline at end of file