Skip to content

Commit

Permalink
[xs] temp fix for logout
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Feb 28, 2012
1 parent c6834aa commit 282c100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/config/middleware.py
Expand Up @@ -53,7 +53,6 @@ def make_app(global_conf, full_stack=True, static_files=True, **app_conf):
# Routing/Session/Cache Middleware
app = RoutesMiddleware(app, config['routes.map'])
app = SessionMiddleware(app, config)
app = I18nMiddleware(app, config)
app = CacheMiddleware(app, config)

# CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares)
Expand Down Expand Up @@ -101,6 +100,7 @@ def make_app(global_conf, full_stack=True, static_files=True, **app_conf):
who_parser.remote_user_key,
)

app = I18nMiddleware(app, config)
# Establish the Registry for this application
app = RegistryManager(app)

Expand Down

0 comments on commit 282c100

Please sign in to comment.