diff --git a/EasyAppointments/easy-folder/application/libraries/Ics_file.php b/EasyAppointments/easy-folder/application/libraries/Ics_file.php index 5024a69f..f7054f12 100644 --- a/EasyAppointments/easy-folder/application/libraries/Ics_file.php +++ b/EasyAppointments/easy-folder/application/libraries/Ics_file.php @@ -86,7 +86,8 @@ class Ics_file { } $description = [ - '', +/* quito todo esto para que no aparezca el nombre del proveedor + * '', lang('provider'), '', lang('name') . ': ' . $provider['first_name'] . ' ' . $provider['last_name'], @@ -96,7 +97,8 @@ class Ics_file { lang('city') . ': ' . $provider['city'], lang('zip_code') . ': ' . $provider['zip_code'], '', - lang('customer'), + */ + lang('customer'), '', lang('name') . ': ' . $customer['first_name'] . ' ' . $customer['last_name'], lang('email') . ': ' . $customer['email'], @@ -144,7 +146,9 @@ class Ics_file { $alarm->setAction('EMAIL'); $alarm->addAttendee($attendee); $event->addAlarm($alarm); - +/* + * quito esto para que no se incluya el nombre del proveedor + * $attendee = new Attendee(new Formatter()); if (isset($provider['email']) && ! empty($provider['email'])) @@ -158,7 +162,7 @@ class Ics_file { ->setParticipationStatus('ACCEPTED') ->setRsvp('FALSE'); $event->addAttendee($attendee); - + */ // Set the organizer. $organizer = new Organizer(new Formatter()); diff --git a/EasyAppointments/easy-folder/application/views/emails/appointment_details.php b/EasyAppointments/easy-folder/application/views/emails/appointment_details.php index b79af924..c60a8c58 100644 --- a/EasyAppointments/easy-folder/application/views/emails/appointment_details.php +++ b/EasyAppointments/easy-folder/application/views/emails/appointment_details.php @@ -20,10 +20,12 @@