mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix a bad call when prefilling ApplicationSearch from ?projects=some_slug
Summary: Fixes T10299. Test Plan: - Visited `/maniphest/?projects=x` locally, where `x` is some valid project slug. - Before patch: Fatal on `requireViewer()` call. - After patch: Works correctly, filling the correct project into parameters. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10299 Differential Revision: https://secure.phabricator.com/D15214
This commit is contained in:
parent
d78061d820
commit
07f1a03262
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ final class PhabricatorProjectSearchField
|
|||
|
||||
if ($slugs) {
|
||||
$projects = id(new PhabricatorProjectQuery())
|
||||
->setViewer($this->requireViewer())
|
||||
->setViewer($this->getViewer())
|
||||
->withSlugs($slugs)
|
||||
->execute();
|
||||
foreach ($projects as $project) {
|
||||
|
|
Loading…
Reference in a new issue