Fix viewTicketMessages for ticket module
This commit is contained in:
parent
c76c2e0d3e
commit
2ff69bb3fc
@ -1204,15 +1204,14 @@ class ActionsTicket
|
||||
public function viewTicketMessages($show_private, $show_user = true)
|
||||
{
|
||||
global $conf, $langs, $user;
|
||||
global $object;
|
||||
|
||||
// Load logs in cache
|
||||
$ret = $object->loadCacheMsgsTicket();
|
||||
$ret = $this->dao->loadCacheMsgsTicket();
|
||||
$action = GETPOST('action');
|
||||
|
||||
$this->viewTicketOriginalMessage($user, $action);
|
||||
|
||||
if (is_array($object->cache_msgs_ticket) && count($object->cache_msgs_ticket) > 0) {
|
||||
if (is_array($this->dao->cache_msgs_ticket) && count($this->dao->cache_msgs_ticket) > 0) {
|
||||
print_titre($langs->trans('TicketMailExchanges'));
|
||||
|
||||
print '<table class="border" style="width:100%;">';
|
||||
@ -1229,7 +1228,7 @@ class ActionsTicket
|
||||
print '</td>';
|
||||
}
|
||||
|
||||
foreach ($object->cache_msgs_ticket as $id => $arraymsgs) {
|
||||
foreach ($this->dao->cache_msgs_ticket as $id => $arraymsgs) {
|
||||
if (!$arraymsgs['private']
|
||||
|| ($arraymsgs['private'] == "1" && $show_private)
|
||||
) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user