You are here

function commentaccess_form_comment_form_alter in Comment Access 7

File

./commentaccess.module, line 276
Provides users with permissions for comments on nodes they own.

Code

function commentaccess_form_comment_form_alter(&$form, &$form_state) {
  $form['actions']['submit']['#submit'] = array(
    'commentaccess_form_submit',
  );
}