Added option to disable password warning

This commit is contained in:
Julian Prieber 2022-06-28 18:10:39 +02:00
parent 8c45d7488a
commit d00998bdc1
2 changed files with 4 additions and 1 deletions

View File

@ -295,6 +295,7 @@ if($url1sb == '200' or $url2sb == '200') {
</div> </div>
</nav> </nav>
@if(config('advanced-config.disable_default_password_notice') != 'true')
{{-- Displays a warning message if default password is still set --}} {{-- Displays a warning message if default password is still set --}}
@php $userdbs = DB::table('users')->get(); @endphp @php $userdbs = DB::table('users')->get(); @endphp
@ -309,7 +310,7 @@ if($url1sb == '200' or $url2sb == '200') {
@endif @endif
@endforeach @endforeach
@endif
<! #### begin event detection #### > <! #### begin event detection #### >
<?php <?php

View File

@ -11,4 +11,6 @@
'redirect_https' => 'false', 'redirect_https' => 'false',
'disable_default_password_notice' => 'false',
]; ];