This like of code in the linkchecker.module file is copied directly from core: http://cgit.drupalcode.org/linkchecker/tree/linkchecker.module?h=7.x-1.x...
// If the requested text format does not exist, the text cannot be filtered.
if (!$format = filter_format_load($format_id)) {
linkchecker_watchdog_log('filter', 'Missing text format: %format.', array('%format' => $format_id), WATCHDOG_ALERT);
return '';
}
The problem is that the watchdog_log call puts this log in the type of 'filter' which is a core module. The type should be 'linkchecker'.
Comments
Comment #2
frobComment #3
hass commentedIdeally the function should not have cloned and the module has only reused core. In this case we have no chance to change the name. I'm not sure if there is a policy about this.
Comment #4
quadrexdevD7 reached its EOL back in January 2025, and there is no active release for D7 for this module anymore.
Development or support is not planned for D7. All D7-related issues are marked as outdated in a bunch.
If the issue remains relevant for D10+ versions, merge requests with proposed solutions for a new module version (D10+) are welcome in a new follow-up issue.
Thanks!