mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix for search URL for ponder-related search results.
Summary: Forgot a / Test Plan: Observe the / Reviewers: epriestley, nh, vrana Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3397
This commit is contained in:
parent
8b715a64b5
commit
bc6aa91059
1 changed files with 1 additions and 1 deletions
|
@ -466,7 +466,7 @@ final class PhabricatorObjectHandleData {
|
|||
} else {
|
||||
$question = $questions[$phid];
|
||||
$handle->setName(phutil_utf8_shorten($question->getTitle(), 60));
|
||||
$handle->setURI(new PhutilURI('Q' . $question->getID()));
|
||||
$handle->setURI(new PhutilURI('/Q' . $question->getID()));
|
||||
$handle->setComplete(true);
|
||||
}
|
||||
$handles[$phid] = $handle;
|
||||
|
|
Loading…
Reference in a new issue