Actions
Bug #14183
closedFIX: indexed search external links
Start date:
2004-05-26
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When indexed search shows external links (like indexed PDF documents), it does not add the target that is specified in "result_link_target" to the result links.
Here's a fix: in typo3/ext/indexed_search/pi/class.tx_indexedsearch.php :: printResultRow(), replace
if ($row["show_resume"]) { // Can link directly.
$title = '<a href="'.$row["data_filename"].'">'.$row["result_number"].": ".$this->makeTitle($row
).'</a>';
}
with
if ($row["show_resume"]) { // Can link directly.
// Target set?
$target = $this->conf["result_link_target"]?'target="'.$this->conf["result_link_target"].'"':'';
$title = '<a href="'.$row["data_filename"].'" ' . $target . '>'.$row["result_number"].": ".$this->makeTitle($row).'</a>';
}
(issue imported from #M120)
Files
Actions