Closed (duplicate)
Project:
Nodewords: D6 Meta Tags
Version:
6.x-1.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Nov 2009 at 01:34 UTC
Updated:
30 Nov 2009 at 02:35 UTC
Around line 13 in File sites/all/modules/nodewords/basic_metatags/basic_metatags.install:
$table = db_table_exists('nodewords') ? '{nodewords}' : '{metatags}';
db_query("DELETE FROM {" . $table . "} WHERE type = 'robots'");
which should be
$table = db_table_exists('nodewords') ? 'nodewords' : 'metatags';
db_query("DELETE FROM {" . $table . "} WHERE type = 'robots'");
Similar errors can be found in the same module.
Comments
Comment #1
avpadernoThere is already a report about this, and the code has been already fixed.