diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-04-26 11:19:42 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-04-26 11:19:42 -0500 |
commit | 82bc768dad761df466e38ee9f1501aef766878c3 (patch) | |
tree | 990820667730b9c0ece6bff06673f551b53ecd40 /actionpack/lib/action_dispatch/middleware | |
parent | 5ea8d401569323a10592d68d29b293c1ae131a8b (diff) | |
download | rails-82bc768dad761df466e38ee9f1501aef766878c3.tar.gz rails-82bc768dad761df466e38ee9f1501aef766878c3.tar.bz2 rails-82bc768dad761df466e38ee9f1501aef766878c3.zip |
Fix typo in stale session check [#2404 state:resolved]
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/session/abstract_store.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb b/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb index 6c039cf62d..211d373208 100644 --- a/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb +++ b/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb @@ -74,7 +74,7 @@ module ActionDispatch # Note that the regexp does not allow $1 to end with a ':' $1.constantize rescue LoadError, NameError => const_error - raise ActionController::SessionRestoreError, "Session contains objects whose class definition isn\\'t available.\nRemember to require the classes for all objects kept in the session.\n(Original exception: \#{const_error.message} [\#{const_error.class}])\n" + raise ActionController::SessionRestoreError, "Session contains objects whose class definition isn't available.\nRemember to require the classes for all objects kept in the session.\n(Original exception: #{const_error.message} [#{const_error.class}])\n" end retry |