Skip to content

Commit 0fc7803

Browse files
committed
Hotfix
1 parent 2300d07 commit 0fc7803

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

resources/views/layouts/sidebar.blade.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,10 @@ function URL_exists(string $urlsb): bool
297297
298298
@if(config('advanced-config.disable_default_password_notice') != 'true')
299299
{{-- Displays a warning message if default password is still set --}}
300-
@php $userdbs = DB::table('users')->get(); @endphp
300+
@php
301+
$littlelink_current = Auth::user()->id;
302+
$userdbs = DB::table('users')->where('id', $littlelink_current)->get();
303+
@endphp
301304
302305
@foreach($userdbs as $userdb)
303306

0 commit comments

Comments
 (0)