function shoutbox_form_alter in Shoutbox 7.2
File
- ./
shoutbox.module, line 669 - Shoutbox module displays a block for users to create short messages for the whole site. Uses AHAH to update the database and display content.
Code
function shoutbox_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'contact_site_form') {
$form['captcha']['#after_build'][] = 'example_alter_captcha_text';
}
}