diff options
author | Louise Crow <louise.crow@gmail.com> | 2012-10-30 15:09:04 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2012-10-30 15:09:04 +0000 |
commit | 08d958981182aeb44eec5174e455ab41f60f9a10 (patch) | |
tree | 79249b46d1135dccc90f222d75afffb3d064ede5 /app/controllers/admin_general_controller.rb | |
parent | deaede70df7cf68f380e00f01950b48c0e73a4fa (diff) |
Redirect calls to admin_http_auth_user to more generic wrapper admin_current_user
Diffstat (limited to 'app/controllers/admin_general_controller.rb')
-rw-r--r-- | app/controllers/admin_general_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin_general_controller.rb b/app/controllers/admin_general_controller.rb index 5176eb8db..9f4c398c1 100644 --- a/app/controllers/admin_general_controller.rb +++ b/app/controllers/admin_general_controller.rb @@ -120,7 +120,7 @@ class AdminGeneralController < AdminController end def debug - @http_auth_user = admin_http_auth_user + @admin_current_user = admin_current_user @current_commit = `git log -1 --format="%H"` @current_branch = `git branch | perl -ne 'print $1 if /^\\* (.*)/'` @current_version = `git describe --always --tags` |