From 24af2c2a21d85ab0540851245031afdecb46dea7 Mon Sep 17 00:00:00 2001 From: Eric Fawcett Date: Mon, 6 Nov 2017 13:13:01 -0500 Subject: [PATCH] Replace depreciated split() function with explode() line 244 --- sendform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sendform.php b/sendform.php index 3991d51..806b72a 100644 --- a/sendform.php +++ b/sendform.php @@ -241,7 +241,7 @@ } function fillrecipients() { global $recipients; - $recipients = split(",", $_POST['recipient']); + $recipients = explode(",", $_POST['recipient']); } function missingfield($field) {