You are here

function nodewords_tags_form_submit in Nodewords: D6 Meta Tags 6

Submission function for the meta tags edit page.

1 string reference to 'nodewords_tags_form_submit'
nodewords_tags_form in ./nodewords.admin.inc
Front page settings form.

File

./nodewords.admin.inc, line 457
Administration interface for nodewords.module.

Code

function nodewords_tags_form_submit($form, &$form_state) {
  nodewords_save_tags($form['#nodewords_type'], $form['#nodewords_id'], $form_state['values']['nodewords'], TRUE);
  drupal_set_message(t('The configuration options have been saved.'));
}