You are here

function spam_reported_ignore in Spam 5

2 string references to 'spam_reported_ignore'
spam_reported_comment_operations in ./spam.module
Return the function to call dependant on the $action requested.
spam_reported_nodes_operations in ./spam.module
Return the function to call dependant on the $action requested.

File

./spam.module, line 2965

Code

function spam_reported_ignore($source, $id) {

  // ignore, just remove from spam_reported table
  db_query("DELETE FROM {spam_reported} WHERE source = '%s' AND id = %d", $source, $id);
}