From 4778f148690f879a1f2172b5611d1dce68a02dd3 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 11 Dec 2018 14:07:10 -0500 Subject: [PATCH] Update for php notices getting rid of notices --- models/front/itinerary/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/front/itinerary/list.php b/models/front/itinerary/list.php index e8bc9a9..c5cfd8d 100755 --- a/models/front/itinerary/list.php +++ b/models/front/itinerary/list.php @@ -424,7 +424,7 @@ class GlmMembersFront_itinerary_list // extends GlmMembersFront_events_baseActio $message = $htmlMessage; $header[] = 'From:' . $from_header; - if ( $replyto ) { + if ( isset( $replyto ) && $replyto ) { $header[] = 'Reply-To:' . $replyto; } -- 2.17.1