Merge branch 'master' of git://github.com/lapilofu/philo into develop
authorJoseph Spiros <joseph.spiros@ithinksw.com>
Wed, 29 Jun 2011 11:17:40 +0000 (07:17 -0400)
committerJoseph Spiros <joseph.spiros@ithinksw.com>
Wed, 29 Jun 2011 11:17:40 +0000 (07:17 -0400)
* 'master' of git://github.com/lapilofu/philo:
  Small correction to a bug that was raising an error on the account_required method of AccountMultiView in instances where no manage_account_page is specified. 'node' should be instead 'request.node'.

philo/contrib/waldo/models.py

index 411cf8e..72c81c3 100644 (file)
@@ -501,7 +501,7 @@ class AccountMultiView(RegistrationMultiView):
                                        self.set_requirement_redirect(request, redirect=request.path)
                                        redirect = self.reverse('account', node=request.node)
                                else:
-                                       redirect = node.get_absolute_url()
+                                       redirect = request.node.get_absolute_url()
                                return HttpResponseRedirect(redirect)
                        return view(request, *args, **kwargs)