summaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authormomo-i <momo-i@ampache>2008-08-25 22:15:36 +0000
committermomo-i <momo-i@ampache>2008-08-25 22:15:36 +0000
commitbfc0647117c23618952f27c7af843ce6666fa3f4 (patch)
tree3885e95a66ef4a61a5e48918ba07b145d4d36253 /admin
parent2499cf38867e38340d92d44e08d5611468fec8a0 (diff)
downloadampache-bfc0647117c23618952f27c7af843ce6666fa3f4.tar.gz
ampache-bfc0647117c23618952f27c7af843ce6666fa3f4.tar.bz2
ampache-bfc0647117c23618952f27c7af843ce6666fa3f4.zip
Fixed: last comma was not removed.
Diffstat (limited to 'admin')
-rw-r--r--admin/mail.php2
1 files changed, 1 insertions, 1 deletions
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;