| 332 | == Moved Session model and middleware from core to django.contrib == |
| 333 | |
| 334 | '''Status: Done''' |
| 335 | |
| 336 | The location of the session middleware has changed. |
| 337 | |
| 338 | * Old: {{{django.middleware.sessions.SessionMiddleware}}} |
| 339 | * New: {{{django.contrib.sessions.middleware.SessionMiddleware}}} |
| 340 | |
| 341 | Make sure to update your {{{MIDDLEWARE_CLASSES}}} setting, if you're using sessions. |
| 342 | |
| 343 | Also, the {{{Session}}} model has moved from django/models/core.py to django/contrib/sessions/models.py. If you're accessing the {{{Session}}} model for some reason, note that location change. |
| 344 | |