@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

vrana b44f687c 05718706

+2 -2
+2 -2
src/applications/diffusion/view/browsetable/DiffusionBrowseTableView.php
··· 88 88 $rows = array(); 89 89 foreach ($this->paths as $path) { 90 90 91 + $dir_slash = null; 91 92 $file_type = $path->getFileType(); 92 93 if ($file_type == DifferentialChangeType::FILE_DIRECTORY) { 93 94 $browse_text = $path->getPath().'/'; ··· 118 119 $type = 'file'; 119 120 } 120 121 $browse_text = $path->getPath(); 121 - $dir_slash = null; 122 122 $browse_link = $this->linkBrowse( 123 - $base_path.$path->getPath().$dir_slash, 123 + $base_path.$path->getPath(), 124 124 array( 125 125 'html' => $this->renderPathIcon($type, $browse_text), 126 126 ));