1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-27 01:02:42 +01:00

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
This commit is contained in:
epriestley 2013-03-06 13:34:46 -08:00
parent 911d02e2d1
commit e7d34971e0

View file

@ -24,7 +24,7 @@ abstract class PhabricatorProjectController extends PhabricatorController {
$external_arrow = "\xE2\x86\x97"; $external_arrow = "\xE2\x86\x97";
$tasks_uri = '/maniphest/view/all/?projects='.$project->getPHID(); $tasks_uri = '/maniphest/view/all/?projects='.$project->getPHID();
$slug = PhabricatorSlug::normalize($project->getName()); $slug = PhabricatorSlug::normalize($project->getPhrictionSlug());
$phriction_uri = '/w/projects/'.$slug; $phriction_uri = '/w/projects/'.$slug;
$edit_uri = '/project/edit/'.$id.'/'; $edit_uri = '/project/edit/'.$id.'/';