Replace depreciated split() function with explode() line 244
This commit is contained in:
parent
f4bfcc175f
commit
24af2c2a21
|
|
@ -241,7 +241,7 @@
|
|||
}
|
||||
function fillrecipients() {
|
||||
global $recipients;
|
||||
$recipients = split(",", $_POST['recipient']);
|
||||
$recipients = explode(",", $_POST['recipient']);
|
||||
}
|
||||
|
||||
function missingfield($field) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue