@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.

Generate Phriction URI from saved Project slug, not project name

Summary: We recently changed the slug normalization rules, so project names may now generate a different slug than they used to. We have the correct slug saved, though, so just use that.

Test Plan: Created some projects with various names full of garbage and verified they link correctly.

Reviewers: AnhNhan

Reviewed By: AnhNhan

CC: mbishopim3, aran

Maniphest Tasks: T2632

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

+1 -1
+1 -1
src/applications/project/controller/PhabricatorProjectController.php
··· 24 24 25 25 $external_arrow = "\xE2\x86\x97"; 26 26 $tasks_uri = '/maniphest/view/all/?projects='.$project->getPHID(); 27 - $slug = PhabricatorSlug::normalize($project->getName()); 27 + $slug = PhabricatorSlug::normalize($project->getPhrictionSlug()); 28 28 $phriction_uri = '/w/projects/'.$slug; 29 29 30 30 $edit_uri = '/project/edit/'.$id.'/';