From b2669a286d0f4ec61c351ad3090d13f259e4db08 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Fri, 11 Dec 2015 14:05:16 -0500 Subject: [PATCH] Fix for the reply to part --- controllers/front.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/front.php b/controllers/front.php index 2ceb54d..efc7861 100644 --- a/controllers/front.php +++ b/controllers/front.php @@ -152,8 +152,8 @@ class staffords_employment_front $fromName = $plugin_options['from_name']; $from = $plugin_options['from_email']; $to = $plugin_options['notification_email']; - $name = $plugin_name['replyto_name']; - $email = $plugin_name['replyto_email']; + $name = $plugin_options['replyto_name']; + $email = $plugin_options['replyto_email']; $message = $plugin_options['notification_message'] . "\n\n"; $message .= admin_url() . "edit.php?post_type=staffords_jobs&page=applications\n\n"; $headers = array(); -- 2.17.1