apachesolr_form_node_type_form_alter(&$form, $form_state)Implementation of hook_form_[form_id]_alter().
Make sure to flush cache when content types are changed.
contrib-6/apachesolr/apachesolr.module, line 1671
<?php
function apachesolr_form_node_type_form_alter(&$form, $form_state) {
$form['#submit'][] = 'apachesolr_clear_cache';
}
?>