Sort the messages

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
sendo
Posts: 3
Joined: Fri Sep 12, 2008 4:07 pm

Sort the messages

Post by sendo »

Hello,

I am using Hesk, an I want to know if it is possible to list the last message before all others messages ? Actualy the last message appear at the bottom of the page.

Thank you...

Best regards.
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Try changing this code in file "print_tickets.inc.php" (inside "inc" folder)

Code: Select all

$sort = hesk_input($_GET['sort']) or $sort='priority';
to

Code: Select all

$sort = hesk_input($_GET['sort']) or $sort='lastchange'; if (!isset($_GET['asc'])) {$_GET['asc']=0;} 
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
sendo
Posts: 3
Joined: Fri Sep 12, 2008 4:07 pm

Re:

Post by sendo »

Hello,

Not work... the last response in a discussion appear always at the bottom of the page.

Thanks.
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Ah, sorry, misunderstood you. Undo the change I suggested last time and rather edit admin_ticket.php, change

Code: Select all

$sql = "SELECT * FROM `hesk_replies` WHERE `replyto`='$ticket[id]' ORDER BY `id` ASC";
to

Code: Select all

$sql = "SELECT * FROM `hesk_replies` WHERE `replyto`='$ticket[id]' ORDER BY `id` DESC";
and the same in ticket.php

This will make the last message appear second which may confuse some people (it would take quite some more editing to make the original post at the bottom and is out of the scope of my support here). So rather than doing what suggested above you can try with hiding replies like this:
viewtopic.php?t=1466
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
sendo
Posts: 3
Joined: Fri Sep 12, 2008 4:07 pm

Post by sendo »

Thank you Klemen :D

Best regards...
Post Reply