diff options
author | Friendika <info@friendika.com> | 2011-04-06 19:41:16 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-06 19:42:35 -0700 |
commit | 6728a11ee38e890a0ce9b8b6d96dba98a7238129 (patch) | |
tree | 5396ee3aabb61f9d7ca399073606f5f27b599079 /mod/register.php | |
parent | 9c77c57b74312a92eada9b84f68addece7a3a27c (diff) | |
download | volse-hubzilla-6728a11ee38e890a0ce9b8b6d96dba98a7238129.tar.gz volse-hubzilla-6728a11ee38e890a0ce9b8b6d96dba98a7238129.tar.bz2 volse-hubzilla-6728a11ee38e890a0ce9b8b6d96dba98a7238129.zip |
support feed attachments/enclosures, and fix for bug #30
Diffstat (limited to 'mod/register.php')
-rw-r--r-- | mod/register.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/register.php b/mod/register.php index 06ed1e0f1..ec68aaef4 100644 --- a/mod/register.php +++ b/mod/register.php @@ -86,7 +86,7 @@ function register_post(&$a) { $loose_reg = get_config('system','no_regfullname'); if((! $loose_reg) && (! strpos($username,' '))) - $err .= t("That doesn\'t appear to be your full \x28First Last\x29 name.") . EOL; + $err .= t("That doesn't appear to be your full \x28First Last\x29 name.") . EOL; if(! allowed_email($email)) $err .= t('Your email domain is not among those allowed on this site.') . EOL; |