From 2d18a802ef32c056522f2cef668f8be0ab04450e Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Sun, 8 Sep 2024 13:40:54 +0300 Subject: [PATCH] Move ?: operator outside of t() for "Only ... can edit" block messages --- app/controllers/user_blocks_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/user_blocks_controller.rb b/app/controllers/user_blocks_controller.rb index 6bf86de3f..7d61366be 100644 --- a/app/controllers/user_blocks_controller.rb +++ b/app/controllers/user_blocks_controller.rb @@ -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? -- 2.39.5