Replace depreciated split() function with explode() line 244

This commit is contained in:
Eric Fawcett 2017-11-06 13:13:01 -05:00
parent f4bfcc175f
commit 24af2c2a21
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@
}
function fillrecipients() {
global $recipients;
$recipients = split(",", $_POST['recipient']);
$recipients = explode(",", $_POST['recipient']);
}
function missingfield($field) {