Index: faq.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/faq/faq.module,v retrieving revision 1.1.4.52.2.95 diff -u -p -r1.1.4.52.2.95 faq.module --- faq.module 4 Jan 2009 20:42:34 -0000 1.1.4.52.2.95 +++ faq.module 18 Sep 2009 13:52:43 -0000 @@ -1090,17 +1090,20 @@ function faq_view_answer(&$data, $node, } } - // Add "edit answer" link if they have the ocrrect permissions. + // Add "edit answer" link if they have the correct permissions. if (node_access('update', $node)) { $node->links['faq_edit_link'] = array( 'title' => t('Edit answer'), 'href' => "node/$node->nid/edit", + 'query' => drupal_get_destination(), 'attributes' => array('title' => t('Edit answer')), ); }