_abuse_set_status($type, $oid, $status)
abuse/abuse.module, line 1126
<?php
function _abuse_set_status($type, $oid, $status) {
db_query("DELETE FROM {abuse_status} WHERE type = '%s' AND oid = %d", $type, $oid);
db_query("INSERT INTO {abuse_status} (type, oid, changed, status) VALUES ('%s', %d, %d, %d)", $type, $oid, time(), $status);
}
?>