Verfasst: 17.09.2004 22:39
Such mal in der usercp_avatar.phpFüg danach ein
Code: Alles auswählen
return ", user_avatar = '', user_avatar_type = " . USER_AVATAR_NONE;
}Code: Alles auswählen
function user_avatar_gallery($mode, &$error, &$error_msg, $avatar_filename)
{
global $board_config;
if ( file_exists(@phpbb_realpath($board_config['avatar_gallery_path'] . '/' . $avatar_filename)) && ($mode == 'editprofile') )
{
$return = ", user_avatar = '" . str_replace("\'", "''", $avatar_filename) . "', user_avatar_type = " . USER_AVATAR_GALLERY;
}
else
{
$return = '';
}
return $return;
}