From f3de6f276052a24b64a233193fdd34487d5bdeb0 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 30aea10..2d27335 100644 --- a/controllers/front.php +++ b/controllers/front.php @@ -227,7 +227,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