[fix] disp_user_string() no longer generates a warning if no username given

This commit is contained in:
Solomon Peachy 2024-11-04 22:04:23 -05:00
parent ba40bdd9f1
commit ee7b32f11a

View file

@ -2607,6 +2607,10 @@ function disp_user_string($database, $owner_id, $link = TRUE) {
}
}
if ($user_data === FALSE) {
return FALSE;
}
if ($owner_id == $po_user['id']) {
$str = $strings['users_my_folders'];
} else {