In forward.module the explode(',',$recipients) commands in line 624 and 799 may result in empty array-elements if there are multiple commas in the $recipients value, like ",t1@test.de,,t2@test.de,,,t3@test.de,," .
I rarely use php, so hope i have not misunderstood the code there. May it could be fixed with an regexp before the explode-commands, like: $recipients = preg_replace('/,,+/' , ',' , trim($recipients,',') ); ?

Comments

seanr’s picture

Version: 6.x-1.6 » 6.x-1.x-dev
Status: Active » Fixed

Should be fixed now. Thanks for the help.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.