1
0
Fork 0
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:
Pieter Hooimeijer 2012-08-28 13:12:32 -07:00
parent 8b715a64b5
commit bc6aa91059

View file

@ -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;