You are here

function insight_report_ignore in Insight 7

1 call to insight_report_ignore()
insight_report_form_submit in ./insight.reports.inc

File

./insight.module, line 292

Code

function insight_report_ignore($irid) {
  $query = db_update('insight_report')
    ->fields(array(
    'active' => 0,
  ))
    ->condition('irid', $irid)
    ->execute();
}