Actions
Bug #72598
closedIndexed_search debug-Link in Crawler
Status:
Closed
Priority:
Could have
Assignee:
-
Category:
-
Target version:
-
Start date:
2016-01-08
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
In \typo3\sysext\indexed_search\Classes\Hook\CrawlerHook.php the following code includes a debug echo
line:
public function checkDeniedSuburls($url, $url_deny) { if (trim($url_deny)) { $url_denyArray = GeneralUtility::trimExplode(LF, $url_deny, true); foreach ($url_denyArray as $testurl) { if (GeneralUtility::isFirstPartOfStr($url, $testurl)) { echo $url . ' /// ' . $url_deny . LF; return true; } } } return false; }
This line can probably be removed.
Actions