mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01: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:
parent
921d56efb0
commit
989b585bbe
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue