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;