Index: README.txt =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/talk/README.txt,v retrieving revision 1.3.2.1 diff -u -p -r1.3.2.1 README.txt --- README.txt 27 Mar 2009 17:18:44 -0000 1.3.2.1 +++ README.txt 10 Apr 2009 16:00:29 -0000 @@ -12,7 +12,7 @@ INSTALLATION 3. Under Administer >> Content >> Content types, click "edit" next to the modules on which you wish to enable the talk tab. 4. Enable "Display comments on separate talk page" checkbox (found under the - "workflow options" fieldset) on each content type that you'd like to have a + "comment settings" fieldset) on each content type that you'd like to have a talk tab. 5. If you'd like to change the title of the talk page (for example, to "discussion"), go to Administer >> Settings >> Talk, and enter the preferred Index: talk.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/talk/talk.module,v retrieving revision 1.6.2.3 diff -u -p -r1.6.2.3 talk.module --- talk.module 27 Mar 2009 17:20:52 -0000 1.6.2.3 +++ talk.module 10 Apr 2009 15:59:53 -0000 @@ -119,7 +119,7 @@ function talk_link($type, $node = NULL, function talk_form_alter(&$form, $form_state, $form_id) { // Add option to comment options of node types. if ($form_id == 'node_type_form' && isset($form['identity']['type']) && module_exists('comment')) { - $form['workflow']['comment_talk'] = array( + $form['comment']['comment_talk'] = array( '#type' => 'checkbox', '#title' => t('Display comments on separate talk page'), '#prefix' => ''. t('Talk pages:') .'',