remove +/- prefix, as it is not part of email but operator

This commit is contained in:
Ralf Becker 2016-10-31 15:51:02 +01:00
parent e30794e61b
commit 4d62d34fac

View File

@ -444,10 +444,11 @@ function do_edit_mail($type, array $arg0s)
* Set, add or remove from array depending on $mod[0][0] being '+', '-' or something else (set)
*
* @param array& $arr
* @param array $mod eg. ["+some-alias@egroupware.org","other-alias@egroupware.org"] will add all given alias to $arr
* @param array& $mod eg. ["+some-alias@egroupware.org","other-alias@egroupware.org"] will add all given alias to $arr
* on return optional +/- prefix has been removed
* @return array
*/
function array_modify(array &$arr, array $mod)
function array_modify(array &$arr, array &$mod)
{
switch($mod[0][0])
{