X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/77851bac7bf76473de33b7bbab00bc1b3d834cb1..88bf67b0923b1376ae6320597c70ce65e5fb1073:/app/controllers/user_blocks_controller.rb?ds=sidebyside diff --git a/app/controllers/user_blocks_controller.rb b/app/controllers/user_blocks_controller.rb index f6bca4bce..75c9df9dc 100644 --- a/app/controllers/user_blocks_controller.rb +++ b/app/controllers/user_blocks_controller.rb @@ -60,7 +60,7 @@ class UserBlocksController < ApplicationController end if @user_block.creator_id != @user.id - flash[:notice] = t('user_block.update.only_creator_can_edit') + flash[:error] = t('user_block.update.only_creator_can_edit') redirect_to :action => "edit" return end @@ -109,11 +109,10 @@ class UserBlocksController < ApplicationController private ## # require that the user is a moderator, or fill out a helpful error message - # and return them to the login screen where they might be able to login as - # a moderator. + # and return them to the blocks index. def require_moderator unless @user.moderator? - flash[:notice] = t('user_block.filter.not_a_moderator') + flash[:error] = t('user_block.filter.not_a_moderator') redirect_to :action => 'index' end end @@ -144,10 +143,10 @@ class UserBlocksController < ApplicationController @valid_params = false if !UserBlock::PERIODS.include?(@block_period) - flash[:notice] = t('user_block.filter.block_period') + flash[:error] = t('user_block.filter.block_period') elsif @user_block and !@user_block.active? - flash[:notice] = t('user_block.filter.block_expired') + flash[:error] = t('user_block.filter.block_expired') else @valid_params = true