mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
Fix link to submodule's history
Test Plan: https://secure.phabricator.com/diffusion/P/browse/master/externals/ Click on History of `javelin/`. Reviewers: epriestley Reviewed By: epriestley CC: aran, Koolvin Differential Revision: https://secure.phabricator.com/D2316
This commit is contained in:
parent
05718706ab
commit
b44f687ce2
1 changed files with 2 additions and 2 deletions
|
@ -88,6 +88,7 @@ final class DiffusionBrowseTableView extends DiffusionView {
|
|||
$rows = array();
|
||||
foreach ($this->paths as $path) {
|
||||
|
||||
$dir_slash = null;
|
||||
$file_type = $path->getFileType();
|
||||
if ($file_type == DifferentialChangeType::FILE_DIRECTORY) {
|
||||
$browse_text = $path->getPath().'/';
|
||||
|
@ -118,9 +119,8 @@ final class DiffusionBrowseTableView extends DiffusionView {
|
|||
$type = 'file';
|
||||
}
|
||||
$browse_text = $path->getPath();
|
||||
$dir_slash = null;
|
||||
$browse_link = $this->linkBrowse(
|
||||
$base_path.$path->getPath().$dir_slash,
|
||||
$base_path.$path->getPath(),
|
||||
array(
|
||||
'html' => $this->renderPathIcon($type, $browse_text),
|
||||
));
|
||||
|
|
Loading…
Reference in a new issue