~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to phabricator/src/applications/people/controller/PhabricatorPeopleController.php

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2015-04-28 03:01:19 UTC
  • mfrom: (0.22.1) (0.21.1) (0.17.2) (2.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20150428030119-36t1maxz1gh3ojyg
Tags: 0~git20150428-1
* New snapshot release
* fixed nginx configuration (closes: #779705)
* start mysql before phd daemons, if available (closes: #780260, #780265)
* fixed log files permissions (closes: #781825)
* added spanish translation (closes: #783566)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
      if ($name) {
17
17
        $nav->setBaseURI(new PhutilURI('/p/'));
18
18
        $nav->addFilter("{$name}/", $name);
19
 
        $nav->addFilter("feed/{$name}/", pht('Feed'));
20
 
        $nav->addFilter("calendar/{$name}/", pht('Calendar'));
 
19
        $nav->addFilter("{$name}/feed/", pht('Feed'));
 
20
        $nav->addFilter("{$name}/calendar/", pht('Calendar'));
21
21
      }
22
22
    }
23
23
 
70
70
    if (PhabricatorApplication::isClassInstalledForViewer($class, $viewer)) {
71
71
      $phid = $user->getPHID();
72
72
      $view_uri = sprintf(
73
 
        '/maniphest/?statuses=%s&assigned=%s#R',
74
 
        implode(',', ManiphestTaskStatus::getOpenStatusConstants()),
 
73
        '/maniphest/?statuses=open()&assigned=%s#R',
75
74
        $phid);
76
75
      $nav->addIcon(
77
76
        'maniphest', pht('Open Tasks'), 'fa-anchor', null, $view_uri);