1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-20 13:52:40 +01:00

Fix People mobile menu URLs

Summary: The mobile menu on people profiles has the incorrect order in the URLs and thus, 404s.

Test Plan: Went to a profile on a mobile display, click on feed and calendar links, got to correct place.

Reviewers: epriestley, btrahan

Reviewed By: btrahan

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11847
This commit is contained in:
Chad Little 2015-02-23 09:23:30 -08:00
parent 90bb14be3f
commit 15824bd516

View file

@ -16,8 +16,8 @@ abstract class PhabricatorPeopleController extends PhabricatorController {
if ($name) { if ($name) {
$nav->setBaseURI(new PhutilURI('/p/')); $nav->setBaseURI(new PhutilURI('/p/'));
$nav->addFilter("{$name}/", $name); $nav->addFilter("{$name}/", $name);
$nav->addFilter("feed/{$name}/", pht('Feed')); $nav->addFilter("{$name}/feed/", pht('Feed'));
$nav->addFilter("calendar/{$name}/", pht('Calendar')); $nav->addFilter("{$name}/calendar/", pht('Calendar'));
} }
} }