1
0
mirror of https://github.com/django/django.git synced 2025-07-05 10:19:20 +00:00

[1.2.X] Reverted changeset [14356]

That fix for #14565 introduced test failures.  A better fix will
follow shortly.

Refs #14565

Backport of [14376] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14379 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2010-10-28 11:58:30 +00:00
parent 12652baca6
commit fcc283a52d

View File

@ -1,8 +1,6 @@
from django import http from django import http
from django.template import Context, RequestContext, loader from django.template import Context, RequestContext, loader
from django.views.decorators.csrf import csrf_protect
@csrf_protect
def page_not_found(request, template_name='404.html'): def page_not_found(request, template_name='404.html'):
""" """
Default 404 handler. Default 404 handler.
@ -15,7 +13,6 @@ def page_not_found(request, template_name='404.html'):
t = loader.get_template(template_name) # You need to create a 404.html template. t = loader.get_template(template_name) # You need to create a 404.html template.
return http.HttpResponseNotFound(t.render(RequestContext(request, {'request_path': request.path}))) return http.HttpResponseNotFound(t.render(RequestContext(request, {'request_path': request.path})))
@csrf_protect
def server_error(request, template_name='500.html'): def server_error(request, template_name='500.html'):
""" """
500 error handler. 500 error handler.