1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Fix ApplicationSearch URIs for Settings

Summary: Fixes T11275. This search query doesn't actually have any options so these links are a little pointless, but generate valid links instead of 404s.

Test Plan: Clicked "Advanced Search" and "Edit Queries" from `/settings/`.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11275

Differential Revision: https://secure.phabricator.com/D16238
This commit is contained in:
epriestley 2016-07-05 16:43:57 -07:00
parent 921d56efb0
commit 989b585bbe

View file

@ -27,7 +27,7 @@ final class PhabricatorUserPreferencesSearchEngine
} }
protected function getURI($path) { protected function getURI($path) {
return '/settings/list/'.$path; return '/settings/'.$path;
} }
protected function getBuiltinQueryNames() { protected function getBuiltinQueryNames() {