Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.6.1
-
Component/s: None
-
Labels:None
Description
To reproduce:
- Login as client
- View ticket widget
- Click ticket number
- Receive 404
On line 59 in plugins/support_manager/views/default/client_main.pdt the URL needs to be changed from
<td><a href="<?php echo $this->Html->safe($this->base_uri . 'plugin/support_manager/client_main/reply/' . (isset($ticket->id) ? $ticket->id : null) . '/');?>"><?php echo (isset($ticket->code) ? $this->Html->safe($ticket->code) : null);?></a></td>
To
<td><a href="<?php echo $this->Html->safe($this->base_uri . 'plugin/support_manager/client_tickets/reply/' . (isset($ticket->id) ? $ticket->id : null) . '/');?>"><?php echo (isset($ticket->code) ? $this->Html->safe($ticket->code) : null);?></a></td>