user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND status = 8 ORDER BY cid' at line 1 query: SELECT mmfid, cid FROM media_mover_files WHERE nid= 6 AND status = AND status = 8 ORDER BY cid in /var/www/html/drupal5/includes/database.mysql.inc on line 174.

Comments

neopoet’s picture

Changing line 2535 in media_mover_api.module from:

if ($status) {
$status = " AND status = ". msql_escape_string($status) .' ';
}

to:
if (is_numeric($status)) {
$status = " AND status = ". msql_escape_string($status) .' ';
}

seems to at least stop the log entry, however it doesn't seem to fix the underlying problem (the harvesting function not working)

arthurf’s picture

Please give the dev release a try- that should solve your issue.

arthurf’s picture

Status: Active » Closed (fixed)