@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 unused argument from ProfileImageWorkflow

Summary: Ref T10319. Removing an unused arg from the workflow script for building profile images.

Test Plan: Rerun `bin/people profileimage --users chad 007 --force`

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T10319

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

-6
-6
src/applications/people/management/PhabricatorPeopleProfileImageWorkflow.php
··· 11 11 ->setArguments( 12 12 array( 13 13 array( 14 - 'name' => 'user', 15 - 'help' => pht( 16 - 'Generate a default profile image for a specific user'), 17 - ), 18 - array( 19 14 'name' => 'all', 20 15 'help' => pht( 21 16 'Generate default profile images for all users.'), ··· 38 33 39 34 $is_force = $args->getArg('force'); 40 35 $is_all = $args->getArg('all'); 41 - $is_user = $args->getArg('user'); 42 36 43 37 $gd = function_exists('imagecreatefromstring'); 44 38 if (!$gd) {