Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18738105
D12554.id30138.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D12554.id30138.diff
View Options
diff --git a/src/applications/home/controller/PhabricatorHomeMainController.php b/src/applications/home/controller/PhabricatorHomeMainController.php
--- a/src/applications/home/controller/PhabricatorHomeMainController.php
+++ b/src/applications/home/controller/PhabricatorHomeMainController.php
@@ -148,8 +148,7 @@
}
$href = urisprintf(
- '/maniphest/?statuses=%s&priorities=%s#R',
- implode(',', ManiphestTaskStatus::getOpenStatusConstants()),
+ '/maniphest/?statuses=open()&priorities=%s#R',
$unbreak_now);
$title = pht('Unbreak Now!');
$panel = new PHUIObjectBoxView();
@@ -199,8 +198,7 @@
$title = pht('Needs Triage');
$href = urisprintf(
- '/maniphest/?statuses=%s&priorities=%s&userProjects=%s#R',
- implode(',', ManiphestTaskStatus::getOpenStatusConstants()),
+ '/maniphest/?statuses=open()&priorities=%s&projects=projects(%s)#R',
$needs_triage,
$user->getPHID());
$panel = new PHUIObjectBoxView();
@@ -290,7 +288,7 @@
}
$title = pht('Assigned Tasks');
- $href = '/maniphest';
+ $href = '/maniphest/query/assigned/';
$panel = new PHUIObjectBoxView();
$panel->setHeader($this->renderSectionHeader($title, $href));
$panel->appendChild($this->buildTaskListView($tasks));
diff --git a/src/applications/maniphest/controller/ManiphestReportController.php b/src/applications/maniphest/controller/ManiphestReportController.php
--- a/src/applications/maniphest/controller/ManiphestReportController.php
+++ b/src/applications/maniphest/controller/ManiphestReportController.php
@@ -465,7 +465,7 @@
}
}
- $base_link = '/maniphest/?allProjects=';
+ $base_link = '/maniphest/?projects=';
$leftover_name = phutil_tag('em', array(), pht('(No Project)'));
$col_header = pht('Project');
$header = pht('Open Tasks by Project and Priority (%s)', $date);
diff --git a/src/applications/people/controller/PhabricatorPeopleController.php b/src/applications/people/controller/PhabricatorPeopleController.php
--- a/src/applications/people/controller/PhabricatorPeopleController.php
+++ b/src/applications/people/controller/PhabricatorPeopleController.php
@@ -70,8 +70,7 @@
if (PhabricatorApplication::isClassInstalledForViewer($class, $viewer)) {
$phid = $user->getPHID();
$view_uri = sprintf(
- '/maniphest/?statuses=%s&assigned=%s#R',
- implode(',', ManiphestTaskStatus::getOpenStatusConstants()),
+ '/maniphest/?statuses=open()&assigned=%s#R',
$phid);
$nav->addIcon(
'maniphest', pht('Open Tasks'), 'fa-anchor', null, $view_uri);
diff --git a/src/applications/project/controller/PhabricatorProjectController.php b/src/applications/project/controller/PhabricatorProjectController.php
--- a/src/applications/project/controller/PhabricatorProjectController.php
+++ b/src/applications/project/controller/PhabricatorProjectController.php
@@ -76,9 +76,8 @@
if (PhabricatorApplication::isClassInstalledForViewer($class, $viewer)) {
$phid = $project->getPHID();
$query_uri = urisprintf(
- '/maniphest/?statuses=%s&allProjects=%s#R',
- implode(',', ManiphestTaskStatus::getOpenStatusConstants()),
- $phid);
+ '/maniphest/?statuses=open()&projects=%s#R',
+ $phid);
$nav->addIcon(null, pht('Open Tasks'), 'fa-anchor', null, $query_uri);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Oct 2, 2:07 PM (3 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
11483789
Default Alt Text
D12554.id30138.diff (3 KB)
Attached To
Mode
D12554: Update various hard-coded URIs
Attached
Detach File
Event Timeline
Log In to Comment