mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-23 19:10:30 +02:00
Fixed missing translation strings
This commit is contained in:
parent
4bfdca752f
commit
26c983a0b2
15 changed files with 570 additions and 45 deletions
|
@ -283,7 +283,7 @@ class SupportController extends Controller
|
|||
);
|
||||
$this->container->get('flash')->addMessage('success', 'Ticket has been escalated successfully');
|
||||
return $response->withHeader('Location', '/ticket/'.$ticket_id)->withStatus(302);
|
||||
} else if ($action === 'reopen') {
|
||||
} else if ($action === 'reopen') {
|
||||
$db->update(
|
||||
'support_tickets',
|
||||
[
|
||||
|
@ -294,7 +294,7 @@ class SupportController extends Controller
|
|||
'id' => $ticket_id
|
||||
]
|
||||
);
|
||||
$this->container->get('flash')->addMessage('success', 'Ticket has been escalated successfully');
|
||||
$this->container->get('flash')->addMessage('success', 'Ticket has been reopened successfully');
|
||||
return $response->withHeader('Location', '/ticket/'.$ticket_id)->withStatus(302);
|
||||
} else {
|
||||
$this->container->get('flash')->addMessage('error', 'Incorrect action specified');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue