--- sites/all/modules/forward/forward.module 2009-06-24 15:58:29.000000000 +0100 +++ sites/all/modules/forward/forward_fixed.module 2009-11-03 11:43:52.000000000 +0000 @@ -196,7 +196,7 @@ function forward_admin_settings() { '#maxlength' => 40, '#description' => t('If left blank, the from address entered in the form will be used as the from address for the email. Enter a valid email address here to override that. The sender\'s email will still appear in the body of the message.'), ); - + $types = node_get_types(); $options = array(); $defaults = array(); @@ -912,8 +912,8 @@ function forward_link($type, $node=0, $t 'title' => $title, 'href' => 'forward', 'html' => $html, - 'attributes' => array('title' => t('Forward this page to a friend'), 'class' => 'forward-page'), - 'query' => 'path='. $form_state['values']['path'] . $cid, + 'attributes' => array('title' => variable_get('forward_page_title', t('Forward this page to a friend')), 'class' => 'forward-page'), + 'query' => array('path' => $form_state['values']['path'] . $cid), ); return $links; }