@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 comparison check for SVN in browsing Diffusion

Summary: Fixes T12905. Missed setting this variable.

Test Plan: Browse an SVN repository.

Reviewers: epriestley

Subscribers: Korvin

Maniphest Tasks: T12905

Differential Revision: https://secure.phabricator.com/D18190

+3 -2
+3 -2
src/applications/diffusion/controller/DiffusionBrowseController.php
··· 1667 1667 $repository = $drequest->getRepository(); 1668 1668 $history_uri = $drequest->generateURI(array('action' => 'history')); 1669 1669 $behind_head = $drequest->getSymbolicCommit(); 1670 + $compare = null; 1670 1671 $head_uri = $drequest->generateURI( 1671 1672 array( 1672 1673 'commit' => '', ··· 1771 1772 } 1772 1773 1773 1774 $header = id(new PHUIHeaderView()) 1774 - ->setHeader(pht('Recently Open Revisions')) 1775 - ->setHeaderIcon('fa-gear'); 1775 + ->setHeader(pht('Recently Open Revisions')); 1776 1776 1777 1777 $view = id(new DifferentialRevisionListView()) 1778 1778 ->setHeader($header) 1779 + ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 1779 1780 ->setRevisions($revisions) 1780 1781 ->setUser($viewer); 1781 1782