mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 21:32:43 +01:00
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
This commit is contained in:
parent
892a9a1f07
commit
550a82d438
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ final class PhabricatorRepositoryManagementMovePathsWorkflow
|
|||
} else {
|
||||
$dst = $to.substr($src, strlen($from));
|
||||
|
||||
$row['action'] = phutil_console_format('**%s**', pht('Move'));
|
||||
$row['action'] = tsprintf('**%s**', pht('Move'));
|
||||
$row['dst'] = $dst;
|
||||
$row['move'] = true;
|
||||
$any_changes = true;
|
||||
|
@ -94,7 +94,7 @@ final class PhabricatorRepositoryManagementMovePathsWorkflow
|
|||
->addColumn(
|
||||
'dst',
|
||||
array(
|
||||
'title' => pht('dst'),
|
||||
'title' => pht('Dst'),
|
||||
))
|
||||
->setBorders(true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue