@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 two minor formatting issues with `bin/repository move-paths`

Summary: This gets over-escaped instead of bolded right now, but I only ever hit it when exporting/importing and never both cleaning it up.

Test Plan: Ran `bin/repository move-paths`, saw bolded "Move" instead of ANSI escape sequences.

Reviewers: chad

Reviewed By: chad

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

+2 -2
+2 -2
src/applications/repository/management/PhabricatorRepositoryManagementMovePathsWorkflow.php
··· 66 66 } else { 67 67 $dst = $to.substr($src, strlen($from)); 68 68 69 - $row['action'] = phutil_console_format('**%s**', pht('Move')); 69 + $row['action'] = tsprintf('**%s**', pht('Move')); 70 70 $row['dst'] = $dst; 71 71 $row['move'] = true; 72 72 $any_changes = true; ··· 94 94 ->addColumn( 95 95 'dst', 96 96 array( 97 - 'title' => pht('dst'), 97 + 'title' => pht('Dst'), 98 98 )) 99 99 ->setBorders(true); 100 100