[fix] disp_user_string() no longer generates a warning if no username given
This commit is contained in:
parent
ba40bdd9f1
commit
ee7b32f11a
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue