diff options
author | mistic100 <mistic@piwigo.org> | 2013-11-18 19:54:36 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-11-18 19:54:36 +0000 |
commit | 4dd7b0e42f8249e31cf04a13d51a526bbbda8352 (patch) | |
tree | 0db80a8dcd114e0af0de5a6a3a431f6c1fbc3326 | |
parent | 894a93ebfff05801c8d39d0b514507fec10f12b6 (diff) |
parse error in r25550
git-svn-id: http://piwigo.org/svn/trunk@25563 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | include/functions_mail.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_mail.inc.php b/include/functions_mail.inc.php index 8fbde4afe..ac12b51f5 100644 --- a/include/functions_mail.inc.php +++ b/include/functions_mail.inc.php @@ -203,7 +203,7 @@ function get_clean_recipients_list($data) $existing = array(); foreach ($data as $i => $entry) { - if (isset($existing[ $entry['email'] ]) + if (isset($existing[ $entry['email'] ])) { unset($data[$i]); } |