From 41eb2464e2d9d4ce279bcaf1edbf1ea2e0bcba3b Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 21 Mar 2023 21:21:01 -0700 Subject: [PATCH] Forgot the static method declaration - derp Signed-off-by: snipe --- app/Helpers/Helper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Helpers/Helper.php b/app/Helpers/Helper.php index 541d4070ff..89704242ba 100644 --- a/app/Helpers/Helper.php +++ b/app/Helpers/Helper.php @@ -1163,7 +1163,7 @@ class Helper * } * @todo - use this everywhere else in the app where we have very long if/else config('app.lock_passwords') stuff */ - public function isDemoMode() { + public static function isDemoMode() { if (config('app.lock_passwords') === true) { return true; \Log::debug('app locked!'); @@ -1177,7 +1177,7 @@ class Helper * I know it's gauche to return a shitty HTML string, but this is just a helper and since it will be the same every single time, * it seemed pretty safe to do here. Don't you judge me. */ - public function showDemoModeFieldWarning() { + public static function showDemoModeFieldWarning() { if (Helper::isDemoMode()) { return "

" . trans('general.feature_disabled') . "

"; }