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.
Updated by Gerrit Code Review almost 9 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/45705
Updated by Gerrit Code Review almost 9 years ago
Patch set 1 for branch TYPO3_7-6 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/45730
Updated by Wouter Wolters almost 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset fb036404d28e335def09ebbf2af4d6040665f96f.
Updated by Gerrit Code Review almost 9 years ago
- Status changed from Resolved to Under Review
Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/45732
Updated by Morton Jonuschat almost 9 years ago
- Status changed from Under Review to Resolved
Applied in changeset 1eea94284508609e1b6215efd257e6a132ceb4a1.
Actions