]> git.openstreetmap.org Git - rails.git/commitdiff
Move ?: operator outside of t() for "Only ... can edit" block messages
authorAnton Khorev <tony29@yandex.ru>
Sun, 8 Sep 2024 10:40:54 +0000 (13:40 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sun, 8 Sep 2024 10:40:54 +0000 (13:40 +0300)
app/controllers/user_blocks_controller.rb

index 6bf86de3fa6b0387379923aa7efce96cadd14cd1..7d61366be9e071f0cd0360d48bf00ba22b968635 100644 (file)
@@ -71,7 +71,7 @@ class UserBlocksController < ApplicationController
   def update
     if @valid_params
       if cannot?(:update, @user_block)
-        flash[:error] = t(@user_block.revoker ? ".only_creator_or_revoker_can_edit" : ".only_creator_can_edit")
+        flash[:error] = @user_block.revoker ? t(".only_creator_or_revoker_can_edit") : t(".only_creator_can_edit")
         redirect_to :action => "edit"
       else
         user_block_was_active = @user_block.active?