Changeset 239:2f38f99ecdfa


Ignore:
Timestamp:
05.02.2010 14:08:31 (2 years ago)
Author:
slav0nic <slav0nic0@…>
Branch:
default
Message:

marked problem code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • djangobb/djangobb_forum/views.py

    r223 r239  
    482482        topic_count = Topic.objects.filter(user=user).count() 
    483483        if user.forum_profile.post_count < forum_settings.POST_USER_SEARCH and not request.user.is_authenticated(): 
    484             return HttpResponseRedirect(reverse('user_signin') + '?next=%s' % request.path) 
     484            #FIXME: problem with redirect to unicoded url; blocker - django ticket #11522 
     485            return HttpResponseRedirect(reverse('user_signin') + '?next=%s' % request.path)  
    485486        return {'profile': user, 
    486487                'topic_count': topic_count, 
Note: See TracChangeset for help on using the changeset viewer.