112a113,126
>   $form['forward_options']['forward_full_text'] = array(
>     '#type' => 'checkbox',
>     '#title' => t('Forward Full Text'),
>     '#return_value' => 1,
>     '#default_value' => variable_get('forward_full_text', false),
>     '#description' => t('If checked, the full text of a node will be forwarded'),
>   );
>   $form['forward_options']['forward_show_comment'] = array(
>     '#type' => 'checkbox',
>     '#title' => t('Show Forward on comments'),
>     '#return_value' => 1,
>     '#default_value' => variable_get('forward_show_comment', false),
>     '#description' => t('If checked, the link/form will appear on comments'),
>   );
495a510,516
> 
>     if (true == variable_get('forward_full_text', false)) {
>       $content->teaser = check_markup($content->body, $content->format, false);
>     } else {
>       $content->teaser = check_markup($content->teaser, $content->format, false);
>     }
> 
514c535
<   $headers['Content-Type'] = 'text/html; charset=utf-8';
---
>   $headers['Content-Type'] = 'text/html';
545c566,567
<   if (($type == 'node' || $type == 'comment') && user_access('access forward') && (variable_get('forward_form_type', 'link') == 'link') && variable_get('forward_display_'. $node->type, '1')) {
---
>   if (($type == 'node' || ($type == 'comment'&& (true == variable_get('forward_show_comment', false)) )) && user_access('access forward') && (variable_get('forward_form_type', 'link') == 'link') && variable_get('forward_display_'. $node->type, '1')) {
> //  if (($type == 'node' || $type == 'comment') && user_access('access forward') && (variable_get('forward_form_type', 'link') == 'link') && variable_get('forward_display_'. $node->type, '1')) {
716c738
< }
---
> }
\ 檔案末沒有 newline 字元
