The abuse form intro text seems not to be implemented yet. I Think adding the following code to the abuse_report_form function in abuse.module should do it:

  $abuse_form_pre = variable_get('abuse_form_pre', '');
  if (!empty($abuse_form_pre)) {
    $form['object_oid'] = array(
      '#value' => $abuse_form_pre,
    );  
  }

Comments

btmash’s picture

Status: Active » Needs work

Hi there,

Not sure if you still use this module, but I'm guessing you are thinking of:

<?php
  $abuse_form_pre = variable_get('abuse_form_pre', '');
  if (!empty($abuse_form_pre)) {
    $form['object_oid'] = array(
      '#type' => 'item',
      '#value' => $abuse_form_pre,
    ); 
  }
?>

?

Doesn't sound like a bad idea.

osopolar’s picture