Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/PHPCensor/View/Home/ajax-timeline.phtml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
<?php

use PHPCensor\Helper\Lang;
use PHPCensor\Helper\Lang;
use PHPCensor\Model\Build;

?>
Expand Down Expand Up @@ -78,7 +78,7 @@ use PHPCensor\Model\Build;
</h3>

<div class="timeline-body">
<a href="<?php echo $build->getBranchLink();?>"><?php echo $build->getProject()->getBranch(); ?></a>
<a href="<?php echo $build->getBranchLink();?>"><?php echo $build->getBranch(); ?></a>
<?php print $branches ? ' + '.implode(', ', $branches) : ''; ?> -
<?php
if ($build->getCommitId() !== 'Manual') {
Expand Down
4 changes: 2 additions & 2 deletions src/PHPCensor/View/Home/index.phtml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php

use PHPCensor\Helper\Lang;
use PHPCensor\Model\Build;
Expand Down Expand Up @@ -109,7 +109,7 @@ use PHPCensor\Model\Build;
</h3>

<div class="timeline-body">
<a href="<?php echo $build->getBranchLink();?>"><?php echo $build->getProject()->getBranch(); ?></a>
<a href="<?php echo $build->getBranchLink();?>"><?php echo $build->getBranch(); ?></a>
<?php print $branches ? ' + '.implode(', ', $branches) : ''; ?> -
<?php
if ($build->getCommitId() !== 'Manual') {
Expand Down