﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7517	Site.objects.get_current() returns deleted objects	Marc Fargas	Marc Fargas	"#7514 lead to find this bug.

{{{
#!python
>>> from django.contrib.sites.models import Site
>>> s = Site.objects.get_current()
>>> s
<Site: example.com>

>>> s.delete()
>>> Site.objects.get_current()
<Site: example.com>
}}}

Obviously, the last one should be a DoesNotExist. Patch incoming."		closed	Contrib apps	dev		fixed			Ready for checkin	1	0	0	0	0	0
