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

avpaderno’s picture

Status: Active » Closed (duplicate)

There is already a report about this, and the code has been already fixed.