Changed a few var names

This commit is contained in:
eliott 2008-01-05 16:59:54 -08:00
parent 74e2bc437d
commit ea8a7cb4e3

View File

@ -11,7 +11,7 @@
MANAGERS = ADMINS
## Cache backend settings
if ENABLE_CACHE == True:
if CACHE == True:
CACHE_BACKEND = 'file:///tmp/ALdjangocache?timeout=900'
CACHE_MIDDLEWARE_SECONDS = 900
CACHE_MIDDLEWARE_KEY_PREFIX = 'arch'
@ -57,7 +57,7 @@
)
# A bit of hackery to insert caching at the right spot
if ENABLE_CACHE == True:
if CACHE == True:
MIDDLEWARE_CLASSES += ('django.middleware.cache.CacheMiddleware',)
MIDDLEWARE_CLASSES += (