Friendica/archive
Jump to navigation
Jump to search
Patches
To remove the "two names" requirement when signing up, comment out this block in /mod/register.php (currently starting around line 107): <php> $loose_reg = get_config('system','no_regfullname'); if(! $loose_reg) { $username = mb_convert_case($username,MB_CASE_TITLE,'UTF-8'); if(! strpos($username,' ')) $err .= t("That doesn't appear to be your full \x28First Last\x29 name.") . EOL; } </php>
This patch is no longer needed; this requirement can be disabled from the admin panel.