Changeset 14120

Show
Ignore:
Timestamp:
08/06/08 01:17:36 (5 years ago)
Author:
janine
Message:

LJSUP-2581

Fix redirects for pages under /community/ by making sure that this code doesn't think those pages are community journals.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/cgi-bin/Apache/LiveJournal.pm

    r14070 r14120  
    827827        $uri =~ m! 
    828828        ^/(users\/|community\/|\~)  # users/community/tilde 
    829         ([^/]*)                     # potential username 
     829        ([^/]+)                     # potential username 
    830830        (.*)?                       # rest 
    831         !x) 
     831        !x && $uri !~ /\.bml/) 
    832832    { 
    833833        my ($part1, $user, $rest) = ($1, $2, $3);