aboutsummaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-27 09:31:26 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-27 09:31:26 +0000
commit0c3ed04bcd5360a8c6b9d6c6021103342804a7e6 (patch)
treecdc5838964a0639baad62e6f949174d3db5a034b /urls.py
parent1c73d633338542b654aa590127efcf91ab2c4c19 (diff)
downloadopenembedded-core-contrib-0c3ed04bcd5360a8c6b9d6c6021103342804a7e6.tar.gz
Fix CSRF validation errors in password reset forms
Thanks to Michael Halstead <michael@yoctoproject.org> for this fix. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index a97d6d0e7f..aa4f8c5d21 100644
--- a/urls.py
+++ b/urls.py
@@ -14,7 +14,7 @@ admin.autodiscover()
urlpatterns = patterns('',
url(r'^layerindex/', include('layerindex.urls')),
url(r'^admin/', include(admin.site.urls)),
- url(r'^accounts/', include('registration.urls')),
+ url(r'^accounts/', include('registration.backends.default.urls')),
url(r'^captcha/', include('captcha.urls')),
url(r'.*', redirect_to, {'url' : '/layerindex/'})
)