@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove picture crop transaction from Conpherence

Summary: Fixes T11730. Removes an old transaction that hasn't been used in a year.

Test Plan: Run sql, check various rooms.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11730

Differential Revision: https://secure.phabricator.com/D17666

+2 -3
+2
resources/sql/autopatches/20170412.conpherence.01.picturecrop.sql
··· 1 + DELETE FROM {$NAMESPACE}_conpherence.conpherence_transaction 2 + WHERE transactionType = 'picture-crop';
-3
src/applications/conpherence/storage/ConpherenceTransaction.php
··· 7 7 const TYPE_PARTICIPANTS = 'participants'; 8 8 const TYPE_DATE_MARKER = 'date-marker'; 9 9 const TYPE_PICTURE = 'picture'; 10 - const TYPE_PICTURE_CROP = 'picture-crop'; // TODO: Nuke these from DB. 11 10 12 11 public function getApplicationName() { 13 12 return 'conpherence'; ··· 43 42 case self::TYPE_PICTURE: 44 43 case self::TYPE_DATE_MARKER: 45 44 return false; 46 - case self::TYPE_PICTURE_CROP: 47 - return true; 48 45 } 49 46 50 47 return parent::shouldHide();