Commit 7a1ca13951fabba1f5fdc6448cd6121cf44e7e29

Authored by Luke Baker
1 parent 38eff33b

fix key used to prevent deprecated warnings

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
config/initializers/session_store.rb
@@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
5 # Make sure the secret is at least 30 characters and all random, 5 # Make sure the secret is at least 30 characters and all random,
6 # no regular words or you'll be exposed to dictionary attacks. 6 # no regular words or you'll be exposed to dictionary attacks.
7 ActionController::Base.session = { 7 ActionController::Base.session = {
8 - :session_key => "_rebirth_session_key", 8 + :key => "_rebirth_session_key",
9 :secret => "f86c832870682bd056afe09e8b328b1b" 9 :secret => "f86c832870682bd056afe09e8b328b1b"
10 } 10 }
11 11