From bfc0647117c23618952f27c7af843ce6666fa3f4 Mon Sep 17 00:00:00 2001 From: momo-i Date: Mon, 25 Aug 2008 22:15:36 +0000 Subject: Fixed: last comma was not removed. --- admin/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'admin') diff --git a/admin/mail.php b/admin/mail.php index ed656003..e2afcda9 100644 --- a/admin/mail.php +++ b/admin/mail.php @@ -43,7 +43,7 @@ switch ($_REQUEST['action']) { } // Remove the last , from the recipient - $recipient = rtrim($recipient,","); + $recipient = rtrim($recipient,", "); // Set the vars on the object AmpacheMail::$recipient = $recipient; -- cgit