logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 2c6a85832cb5188a4f2f6e521e1289098fef96b5
parent: 829e2e8c5d388e4e841dfd9a472340b35cc826c9
Author: HIKARU KOBORI <hk.uec.univ@gmail.com>
Date:   Thu, 24 Aug 2017 11:03:52 +0900

Fix typo in admin/status_controller.rb (#4679)


Diffstat:

Mapp/controllers/admin/statuses_controller.rb4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/controllers/admin/statuses_controller.rb b/app/controllers/admin/statuses_controller.rb @@ -9,7 +9,7 @@ module Admin before_action :set_account before_action :set_status, only: [:update, :destroy] - PAR_PAGE = 20 + PER_PAGE = 20 def index @statuses = @account.statuses @@ -17,7 +17,7 @@ module Admin account_media_status_ids = @account.media_attachments.attached.reorder(nil).select(:status_id).distinct @statuses.merge!(Status.where(id: account_media_status_ids)) end - @statuses = @statuses.preload(:media_attachments, :mentions).page(params[:page]).per(PAR_PAGE) + @statuses = @statuses.preload(:media_attachments, :mentions).page(params[:page]).per(PER_PAGE) @form = Form::StatusBatch.new end