mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-06 05:59:15 +01:00
pushing an array onto the end of an array is not what was intended; we wanted the elements of the latter appended to the first
This commit is contained in:
parent
53a579bab8
commit
72c2b67eb5
@ -323,7 +323,9 @@ class emailadmin_sieve extends Net_Sieve
|
|||||||
$methods = array();
|
$methods = array();
|
||||||
if($userMethod != null ){
|
if($userMethod != null ){
|
||||||
$methods[] = $userMethod;
|
$methods[] = $userMethod;
|
||||||
array_push($methods,$this->supportedAuthMethods);
|
foreach ( $this->supportedAuthMethods as $method ) {
|
||||||
|
$methods[]=$method;
|
||||||
|
}
|
||||||
}else{
|
}else{
|
||||||
$methods = $this->supportedAuthMethods;
|
$methods = $this->supportedAuthMethods;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user