Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rserry committed Oct 21, 2023
1 parent 21aa575 commit 9bda3ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions module/TicketBundle/Controller/TicketController.php
Original file line number Diff line number Diff line change
Expand Up @@ -1005,8 +1005,8 @@ private function sendMail(Ticket $ticket)
->getConfigValue('ticket.confirmation_email_from');

$noreplyAddress = $this->getEntityManager()
->getRepository('CpmmonBundle\Entity\General\Config')
->getConfifValue('system_no-reply_mail');
->getRepository('CommonBundle\Entity\General\Config')
->getConfigValue('system_no-reply_mail');

if ($ticket->getPerson()) {
$person = $ticket->getPerson();
Expand Down
4 changes: 2 additions & 2 deletions module/TicketBundle/Entity/Ticket.php
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,8 @@ public function sendQrMail($controller, $language)
->getConfigValue('ticket.subscription_mail_name');

$noreplyAddress = $entityManager
->getRepository('CpmmonBundle\Entity\General\Config')
->getConfifValue('system_no-reply_mail');
->getRepository('CommonBundle\Entity\General\Config')
->getConfigValue('system_no-reply_mail');

$url = $controller->url()
->fromRoute(
Expand Down

0 comments on commit 9bda3ae

Please sign in to comment.