From e45a863e8d0020039e904d18bc8eda77dad2fa0a Mon Sep 17 00:00:00 2001 From: yuri Date: Thu, 24 Mar 2016 11:27:53 +0200 Subject: [PATCH] fix invitation --- application/Espo/Modules/Crm/Business/Event/Invitations.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/application/Espo/Modules/Crm/Business/Event/Invitations.php b/application/Espo/Modules/Crm/Business/Event/Invitations.php index f5e96b563f..9456544bfc 100644 --- a/application/Espo/Modules/Crm/Business/Event/Invitations.php +++ b/application/Espo/Modules/Crm/Business/Event/Invitations.php @@ -45,11 +45,9 @@ class Invitations protected $language; - protected $fileManager; - protected $ics; - public function __construct($entityManager, $smtpParams, $mailSender, $config, $dateTime, $language, $fileManager) + public function __construct($entityManager, $smtpParams, $mailSender, $config, $dateTime, $language) { $this->entityManager = $entityManager; $this->smtpParams = $smtpParams; @@ -57,7 +55,6 @@ class Invitations $this->config = $config; $this->dateTime = $dateTime; $this->language = $language; - $this->fileManager = $fileManager; } protected function getEntityManager()