fixed some nasty errors + made it show the entire replied message

This commit is contained in:
Quitta 2013-08-18 02:49:58 +02:00
parent 2a7f13c8d8
commit 83d4a89e46
2 changed files with 5 additions and 5 deletions

View file

@ -231,7 +231,7 @@ class Mail_Handler{
if($ticket_id){
//use the line ---------- Ticket # to make a distincton between the old message and the reply
$endpos = strpos($txt, ">---------- Ticket #");
/*$endpos = strpos($txt, ">---------- Ticket #");
if($endpos){
$txt = substr($txt, 0, $endpos);
}else{
@ -239,7 +239,7 @@ class Mail_Handler{
if($endpos){
$txt = substr($txt, 0, $endpos);
}
}
}*/
//if email is sent from an existing email address in the db (else it will give an error while loading the user object)
if($from != "FALSE"){

View file

@ -103,7 +103,7 @@ class Ticket{
Ticket::forwardTicket(0, $ticket_id, $for_support_group);
}
Mail_Handler::send_ticketing_mail($ticket, $content, "NEW", $real_author, $ticket->getForwardedGroupId());
Mail_Handler::send_ticketing_mail($ticket, $content, "NEW", $ticket->getForwardedGroupId());
return $ticket_id;
}