@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 breadcrumb issue on Macro Create page

Summary: uhoh

Test Plan: !!!

Reviewers: frgtn, Korvin, btrahan

Reviewed By: Korvin

CC: aran

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

+3 -3
+1 -1
src/applications/macro/controller/PhabricatorMacroEditController.php
··· 225 225 $crumb = pht('Create Macro'); 226 226 } 227 227 228 - $crumbs->addCrumb($crumb, $request->getRequestURI()); 228 + $crumbs->addTextCrumb($crumb, $request->getRequestURI()); 229 229 230 230 $upload = null; 231 231 if ($macro->getID()) {
+2 -2
src/applications/releeph/controller/ReleephProjectController.php
··· 135 135 $project_id = $project->getID(); 136 136 $project_uri = $this->getApplicationURI("project/{$project_id}/"); 137 137 138 - $crumbs->addCrumb($project->getName(), $project_uri); 138 + $crumbs->addTextCrumb($project->getName(), $project_uri); 139 139 } catch (Exception $ex) { 140 140 // TODO: This is derps. 141 141 } ··· 143 143 try { 144 144 $branch = $this->getReleephBranch(); 145 145 $branch_uri = $branch->getURI(); 146 - $crumbs->addCrumb($branch->getDisplayNameWithDetail(), $branch_uri); 146 + $crumbs->addTextCrumb($branch->getDisplayNameWithDetail(), $branch_uri); 147 147 } catch (Exception $ex) { 148 148 // TODO: This is also derps. 149 149 }