From 2a58ed92db56054d841b93ae5a4e19d59fecf7c5 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 25 Jun 2025 16:08:30 -0700 Subject: [PATCH] fix: update custom banner path in DefaultPageLayout.php - Reverted the banner path from `$config/webGui/banner.png` to `$config/plugins/dynamix/banner.png` to reflect the correct storage location on the boot drive. --- emhttp/plugins/dynamix/include/DefaultPageLayout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/include/DefaultPageLayout.php b/emhttp/plugins/dynamix/include/DefaultPageLayout.php index 33800046b..0d9100bd1 100644 --- a/emhttp/plugins/dynamix/include/DefaultPageLayout.php +++ b/emhttp/plugins/dynamix/include/DefaultPageLayout.php @@ -29,7 +29,7 @@ $alerts = '/tmp/plugins/my_alerts.txt'; $wlan0 = file_exists('/sys/class/net/wlan0'); $safemode = _var($var, 'safeMode') == 'yes'; -$banner = "$config/webGui/banner.png"; +$banner = "$config/plugins/dynamix/banner.png"; // this cannot use the webGui/banner.png file because it is not in the webGui directory but stored on the boot drive $notes = '/var/tmp/unRAIDServer.txt'; if (!file_exists($notes)) {