Changeset 10

Show
Ignore:
Timestamp:
02/18/07 22:10:36 (3 years ago)
Author:
eevee
Message:

Fixed: Usernames can no longer start/end with spaces or have multiple consecutive spaces.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • veekun/lib/Vee/Controller/Users.pm

    r8 r10  
    6262        return; 
    6363    } 
     64 
     65    # quietly make the username a little more HTML-friendly 
     66    $p->{username} =~ s/^ +| +$//g; 
     67    $p->{username} =~ s/ {2,}/ /g; 
    6468 
    6569    # check for sensible username/password