diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-06-09 21:10:57 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-06-09 21:10:57 +0100 |
commit | ffb997d441f4ad8443b81fd6ae62ca97e98a3358 (patch) | |
tree | 2de17d252950f5e83f26c53f8d9cd636e430e8b0 | |
parent | 2bf78f4e1587dfe6e4f6a337e8518f8f1b4594d9 (diff) |
Always session cookie for now.
-rw-r--r-- | perllib/FixMyStreet/App.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm index 29e38a24e..ae4514a0e 100644 --- a/perllib/FixMyStreet/App.pm +++ b/perllib/FixMyStreet/App.pm @@ -51,8 +51,9 @@ __PACKAGE__->config( }, 'Plugin::Session' => { # Catalyst::Plugin::Session::Store::DBIC - dbic_class => 'DB::Session', - expires => 3600 * 24 * 7 * 6, # 6 months + dbic_class => 'DB::Session', + expires => 3600 * 24 * 7 * 6, # 6 months + cookie_expires => 0 }, 'Plugin::Authentication' => { |