Skip to content

Commit

Permalink
Merge branch 'release/5.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
codiebeulaine committed Oct 11, 2017
2 parents 7be3163 + 5a3bc3a commit 23ad14c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
=========

5.2.1
-----
- Bug Fix: redirect edit user page to wagtail admin not django-admin

5.2.0
-----
- Added Comment Rules for Personalise
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.2.0
5.2.1
2 changes: 1 addition & 1 deletion molo/commenting/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _user(self, obj):
if not obj.user:
return ""

url = reverse('admin:auth_user_change', args=(obj.user.id,))
url = '/admin/auth/user/edit/%s/' % obj.user.pk
return '<a href="?user=%s">%s</a>' % (
obj.user.id,
self.get_user_display_name(obj)
Expand Down
2 changes: 1 addition & 1 deletion molo/commenting/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def report(request, comment_id):
"""
Flags a comment on GET.
Redirects to whatever is provided in request.REQUESRT['next'].
Redirects to whatever is provided in request.REQUEST['next'].
"""

comment = get_object_or_404(
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ django-import-export
django-daterange-filter
django-notifications-hq
wagtail-personalisation==0.9.1
Unidecode==0.04.16

0 comments on commit 23ad14c

Please sign in to comment.