Skip to content
Snippets Groups Projects
Commit 364589fb authored by Alex Barth's avatar Alex Barth
Browse files

Add table to drupal_alter().

parent ffec931e
No related branches found
No related tags found
No related merge requests found
...@@ -194,7 +194,7 @@ class FeedsDataHandler extends DataHandler { ...@@ -194,7 +194,7 @@ class FeedsDataHandler extends DataHandler {
$query->addSubject($table); $query->addSubject($table);
$query->addJoin($table, "$table.{$this->key} = $this_table.{$this->key}", 'LEFT JOIN'); $query->addJoin($table, "$table.{$this->key} = $this_table.{$this->key}", 'LEFT JOIN');
} }
drupal_alter('data_delete_query', $query); drupal_alter('data_delete_query', $query, $this->table);
if (!empty($query->where)) { if (!empty($query->where)) {
$query->execute(); $query->execute();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment