]> source.dussan.org Git - redmine.git/commitdiff
2.4-stable: revert r13114 (#16685) 33/head
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 May 2014 13:39:22 +0000 (13:39 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 May 2014 13:39:22 +0000 (13:39 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/2.4-stable@13121 e93f8b46-1217-0410-a6f0-8f06a7374b81

Gemfile
app/models/user.rb

diff --git a/Gemfile b/Gemfile
index 434e9475316f24d29d0b1d6911e87ba42d917fce..bdc39b3cb7485f6a498128a7bc8836db1de4864e 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -6,7 +6,6 @@ gem "jquery-rails", "~> 2.0.2"
 gem "coderay", "~> 1.1.0"
 gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
 gem "builder", "3.0.0"
-gem "request_store"
 
 # Optional gem for LDAP authentication
 group :ldap do
index 827553fc7751d22b005d414d7bcfa6101bf29094..9a20c4c676ff0344685b428288518fad328101fc 100644 (file)
@@ -607,11 +607,11 @@ class User < Principal
   end
 
   def self.current=(user)
-    RequestStore.store[:current_user] = user
+    Thread.current[:current_user] = user
   end
 
   def self.current
-    RequestStore.store[:current_user] ||= User.anonymous
+    Thread.current[:current_user] ||= User.anonymous
   end
 
   # Returns the anonymous user.  If the anonymous user does not exist, it is created.  There can be only