To solve this problem all 'linkchecker_tasks' should be changed to `{linkchecker_tasks}` and all `linkchecker_results` should be changed to `{linkchecker_results}' both in linkchecker.install and in linkchecker.module.

Comments

uwe mindrup’s picture

Another line should adapted to work with database prefixes. In linkchecker.module the following db_query

<?php
 //  - add new tasks
    $res = db_query("SELECT * FROM `node` WHERE `changed` > '$lastrun'");
?>

should be altered to:

<?php
 //  - add new tasks
    $res = db_query("SELECT * FROM `{node}` WHERE `changed` > '$lastrun'");
?>

The 'node' has been rounded with {}.

kubrt’s picture

Assigned: Unassigned » kubrt
Status: Active » Fixed

Thanks. Fixed in CVS

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.