From 2fc492785fa8837b73d6d8894460d0db396e7d8e Mon Sep 17 00:00:00 2001 From: Matthew McNaney Date: Tue, 24 Jul 2018 08:47:27 -0400 Subject: [PATCH] Fixed: Birth date removed but null broke db. Changed to default to 0. --- class/Internship.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/Internship.php b/class/Internship.php index c5eb8c0e..4b9bba4e 100644 --- a/class/Internship.php +++ b/class/Internship.php @@ -58,7 +58,7 @@ class Internship { public $first_name; public $middle_name; public $last_name; - public $birth_date; + public $birth_date = 0; // Metaphones for fuzzy search public $first_name_meta;