]> source.dussan.org Git - redmine.git/commitdiff
remove spaces inside {} of ApplicationController
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 17 Nov 2020 12:41:18 +0000 (12:41 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 17 Nov 2020 12:41:18 +0000 (12:41 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20409 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/application_controller.rb

index 21916562767b421f1c8764c8a7af845c8d5fe6c1..7750120d756311087ac2f5dd270f18eb8c546916 100644 (file)
@@ -276,8 +276,8 @@ class ApplicationController < ActionController::Base
             head(:forbidden)
           end
         end
-        format.js   { head :unauthorized, 'WWW-Authenticate' => 'Basic realm="Redmine API"' }
-        format.any  { head :unauthorized }
+        format.js   {head :unauthorized, 'WWW-Authenticate' => 'Basic realm="Redmine API"'}
+        format.any  {head :unauthorized}
       end
       return false
     end
@@ -565,7 +565,7 @@ class ApplicationController < ActionController::Base
       format.html do
         render :template => 'common/error', :layout => use_layout, :status => @status
       end
-      format.any { head @status }
+      format.any {head @status}
     end
   end