Skip to content

Commit d00998b

Browse files
committed
Added option to disable password warning
1 parent 8c45d74 commit d00998b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

resources/views/layouts/sidebar.blade.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ function URL_exists(string $urlsb): bool
295295
</div>
296296
</nav>
297297
298+
@if(config('advanced-config.disable_default_password_notice') != 'true')
298299
{{-- Displays a warning message if default password is still set --}}
299300
@php $userdbs = DB::table('users')->get(); @endphp
300301
@@ -309,7 +310,7 @@ function URL_exists(string $urlsb): bool
309310
@endif
310311
311312
@endforeach
312-
313+
@endif
313314
314315
<! –– #### begin event detection #### ––>
315316
<?php

storage/templates/advanced-config-update.php renamed to storage/templates/advanced-config-update-1.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@
1111

1212
'redirect_https' => 'false',
1313

14+
'disable_default_password_notice' => 'false',
15+
1416
];

0 commit comments

Comments
 (0)