1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-04 16:38:24 +02: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'; $command = 'arc commit';
break; break;
} }
if ($command) {
$next_step = phutil_tag('tt', array(), $command); $next_step = phutil_tag('tt', array(), $command);
} }
}
if ($next_step) { if ($next_step) {
$properties->addProperty(pht('Next Step'), $next_step); $properties->addProperty(pht('Next Step'), $next_step);
} }