Actions
Feature #16281
closedFrames are not crawled
Start date:
2006-06-24
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
The indexed search only looks for <A> tags within the fetched HTML code.
If you want to index a page that has frames, you do not get good results because the links in the <frame> tags are not considered.
in the file "class.indexer.php" the function "extractHyperLinks" has to be extended so that not only
$this->htmlParser->splitTags('a',$string);
is done but also
$this->htmlParser->splitTags('FRAME',$string);
(issue imported from #M3734)
Updated by Dmitry Dulepov over 14 years ago
What are frames? :D
Just kidding. Nobody uses frames these days...
Actions