Move ?: operator outside of t() for "Only ... can edit" block messages
This commit is contained in:
parent
1fce0c00f1
commit
2d18a802ef
1 changed files with 1 additions and 1 deletions
|
@ -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?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue