@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.

Fix string construction of submit button in Flag

Summary: Fixes T3674.

Test Plan: Clicked "flag for later"; checked error log.

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

Maniphest Tasks: T3674

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

+1 -1
+1 -1
src/applications/flag/controller/PhabricatorFlagEditController.php
··· 82 82 83 83 $dialog->addCancelButton($handle->getURI()); 84 84 $dialog->addSubmitButton( 85 - $is_new ? pht("Flag %s") : pht('Save')); 85 + $is_new ? pht("Create Flag") : pht('Save')); 86 86 87 87 return id(new AphrontDialogResponse())->setDialog($dialog); 88 88 }