1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-26 16:52:41 +01:00

Don't fatal for diffs with no VCS

Auditors: vrana
This commit is contained in:
epriestley 2013-02-19 15:19:28 -08:00
parent f1bd1da062
commit db2c32acdf

View file

@ -86,8 +86,10 @@ final class DifferentialRevisionDetailView extends AphrontView {
$command = 'arc commit';
break;
}
if ($command) {
$next_step = phutil_tag('tt', array(), $command);
}
}
if ($next_step) {
$properties->addProperty(pht('Next Step'), $next_step);
}