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
Comment #1
btmash commentedHi there,
Not sure if you still use this module, but I'm guessing you are thinking of:
?
Doesn't sound like a bad idea.
Comment #2
osopolaryes, something like that (see http://api.drupal.org/api/drupal/developer--topics--forms_api_reference....).