summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings.py b/settings.py
index cc5ed21..42eaa4a 100644
--- a/settings.py
+++ b/settings.py
@@ -141,8 +141,8 @@ CHIMERE_THUMBS_SCALE_HEIGHT = 250
CHIMERE_THUMBS_SCALE_WIDTH = None
# search engine
-CHIMERE_SEARCH_ENGINE = False
CHIMERE_SEARCH_LANGUAGE = 'french'
+HAYSTACK_SEARCH_ENGINE = False
HAYSTACK_CONNECTIONS = {
'default': {
@@ -292,7 +292,7 @@ INSTALLED_APPS.insert(INSTALLED_APPS.index('chimere'), PROJECT_APP)
for app in EXTRA_APPS:
INSTALLED_APPS.append(app)
-if CHIMERE_SEARCH_ENGINE:
+if HAYSTACK_SEARCH_ENGINE:
INSTALLED_APPS.append('haystack')
if 'LOGGING' not in globals():