1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 19:41:55 +02:00

Add option to hide user fullname by default

This commit is contained in:
Afterster 2015-05-14 23:07:36 +02:00
parent bc686882f8
commit 0bce1211fe
15 changed files with 88 additions and 27 deletions

View file

@ -96,7 +96,7 @@ class Upload
$artist = null;
// No associated artist yet, we create a default one for the user sender
if (count($artists) == 0) {
$artists[] = Artist::check($GLOBALS['user']->fullname);
$artists[] = Artist::check($GLOBALS['user']->f_name);
$artist = new Artist($artists[0]);
$artist->update_artist_user($GLOBALS['user']->id);
} else {