From 63fbd5db04deb0ce5dc8c3021789f9d38120b945 Mon Sep 17 00:00:00 2001 From: vrana Date: Fri, 10 Feb 2012 23:45:44 -0800 Subject: [PATCH] Avoid double '/' in Phriction URL Test Plan: /project/view/11/ Hover Wiki. Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1601 --- .../controller/profile/PhabricatorProjectProfileController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/project/controller/profile/PhabricatorProjectProfileController.php b/src/applications/project/controller/profile/PhabricatorProjectProfileController.php index 0f340f85cc..6674bd17d7 100644 --- a/src/applications/project/controller/profile/PhabricatorProjectProfileController.php +++ b/src/applications/project/controller/profile/PhabricatorProjectProfileController.php @@ -61,7 +61,7 @@ class PhabricatorProjectProfileController $external_arrow = "\xE2\x86\x97"; $tasks_uri = '/maniphest/view/all/?projects='.$project->getPHID(); $slug = PhrictionDocument::normalizeSlug($project->getName()); - $phriction_uri = '/w/projects/'.$slug.'/'; + $phriction_uri = '/w/projects/'.$slug; $edit_uri = '/project/edit/'.$project->getID().'/';