We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41e5cbe commit 5bbd542Copy full SHA for 5bbd542
phpmyfaq/inc/PMF/Helper/Search.php
@@ -141,10 +141,11 @@ public function renderInstantResponseResult(PMF_Search_Resultset $resultSet)
141
);
142
143
$link = new PMF_Link($currentUrl, $this->_config);
144
+ $link->itemTitle = $result->question;
145
$faq = new stdClass();
146
$faq->categoryName = $this->Category->getPath($result->category_id);
147
$faq->faqQuestion = PMF_Utils::chopString($result->question, 15);
- $faq->faqLink = $link->toUri();
148
+ $faq->faqLink = $link->toString();
149
150
$results['results'][] = $faq;
151
}
0 commit comments