From 41e4d1227a998e821cf776bccca4498221a28e59 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 5 Jan 2016 13:06:46 -0500 Subject: [PATCH] Bug fix WP 4.4 This was effected by wordpress 4.4 update --- controllers/front.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/front.php b/controllers/front.php index 610053b..f8fb43f 100644 --- a/controllers/front.php +++ b/controllers/front.php @@ -341,7 +341,7 @@ class glm_employment_front 'fname' => $this->fname, 'lname' => $this->lname, 'mname' => $this->mname, - 'position' => $this->job + 'position' => (isset($this->job) ? $this->job : 'NULL') ), array( '%s', -- 2.17.1