mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 17:59:03 +00:00
fixed some nasty errors + made it show the entire replied message
This commit is contained in:
parent
f8537a6454
commit
93593eb8b3
2 changed files with 5 additions and 5 deletions
|
@ -231,7 +231,7 @@ class Mail_Handler{
|
||||||
if($ticket_id){
|
if($ticket_id){
|
||||||
|
|
||||||
//use the line ---------- Ticket # to make a distincton between the old message and the reply
|
//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){
|
if($endpos){
|
||||||
$txt = substr($txt, 0, $endpos);
|
$txt = substr($txt, 0, $endpos);
|
||||||
}else{
|
}else{
|
||||||
|
@ -239,7 +239,7 @@ class Mail_Handler{
|
||||||
if($endpos){
|
if($endpos){
|
||||||
$txt = substr($txt, 0, $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 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"){
|
if($from != "FALSE"){
|
||||||
|
|
|
@ -84,7 +84,7 @@ class Ticket{
|
||||||
* for_support_group defines to which support group the ticket has to be forwarded
|
* for_support_group defines to which support group the ticket has to be forwarded
|
||||||
*/
|
*/
|
||||||
public static function create_Ticket( $title, $content, $category, $author, $real_author, $for_support_group = 0) {
|
public static function create_Ticket( $title, $content, $category, $author, $real_author, $for_support_group = 0) {
|
||||||
|
|
||||||
$ticket = new Ticket();
|
$ticket = new Ticket();
|
||||||
$values = array("Title" => $title, "Status"=> 1, "Queue"=> 0, "Ticket_Category" => $category, "Author" => $author, "Priority" => 0);
|
$values = array("Title" => $title, "Status"=> 1, "Queue"=> 0, "Ticket_Category" => $category, "Author" => $author, "Priority" => 0);
|
||||||
$ticket->set($values);
|
$ticket->set($values);
|
||||||
|
@ -102,8 +102,8 @@ class Ticket{
|
||||||
if($for_support_group){
|
if($for_support_group){
|
||||||
Ticket::forwardTicket(0, $ticket_id, $for_support_group);
|
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;
|
return $ticket_id;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue