PluginProbe
Bookit — Booking & Appointment Calendar / 2.6.0.5
Bookit — Booking & Appointment Calendar v2.6.0.5
2.6.0.5 2.6.0.4 2.6.0.3 2.6.0.2 2.6.0.1 2.6.0 trunk 1.2 1.2.2 1.2.3 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 All 62 releases
← All changes | includes/classes/base/AddonsFactory.php +1 -11 trunk2.6.0.5 View file →
@@ -57,19 +57,9 @@
57 57 'customer_as_attendees' => false,
58 58 'events_limit' => null,
59 59 'template' => array(
60 60 'title' => __( 'Appointment #[appointment_id]', 'bookit' ),
61 - 'body' => __(
62 - 'Service: [service_title]' . PHP_EOL . // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText
63 - 'Customer: [customer_name]' . PHP_EOL .
64 - 'Customer phone: [customer_phone]' . PHP_EOL .
65 - 'Customer email: [customer_email]' . PHP_EOL .
66 - 'Start time: [start_time]' . PHP_EOL .
67 - 'Payment Method: [payment_method]' . PHP_EOL .
68 - 'Payment Status: [payment_status]' . PHP_EOL .
69 - 'Total: [total]' . PHP_EOL . 'Status: [status]',
70 - 'bookit'
71 - ),
61 + 'body' => __( "Service: [service_title]\nCustomer: [customer_name]\nCustomer phone: [customer_phone]\nCustomer email: [customer_email]\nStart time: [start_time]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]", 'bookit' ),
72 62 ),
73 63 );
74 64 }
75 65