Changeset 2806


Ignore:
Timestamp:
05/18/10 11:51:37 (14 years ago)
Author:
amuller
Message:

Ticket #1079 - corrige problema do sugestões text/plain

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/class.imap_functions.inc.php

    r2790 r2806  
    20002000                $this->add_recipients("cco", $ccoaddress, &$mail); 
    20012001                $mail->Subject = $subject; 
    2002                 $mail->IsHTML(true); 
     2002                $mail->IsHTML($params['type'] != 'textplain'); 
    20032003                $mail->Body = $body; 
    20042004 
  • trunk/help/enviasugestao.php

    r1109 r2806  
    2525        $params['input_cc'] = $GLOBALS['phpgw_info']['server']['sugestoes_email_cc']; 
    2626        $params['input_cc'] = $GLOBALS['phpgw_info']['server']['sugestoes_email_bcc']; 
    27         $params['input_subject'] =      lang("Suggestions"); 
     27        $params['input_subject'] = lang("Suggestions"); 
    2828        $params['body'] = $_POST['body']; 
     29        $params['type'] = 'textplain'; 
    2930        $GLOBALS['phpgw']->preferences->read_repository(); 
    3031        $_SESSION['phpgw_info']['expressomail']['user'] = $GLOBALS['phpgw_info']['user']; 
Note: See TracChangeset for help on using the changeset viewer.