mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSaddon::supann: Fix typo in previous commit
This commit is contained in:
parent
159b3fbe7e
commit
eccb234210
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ function supannParseCompositeValue($val) {
|
||||||
if (preg_match_all('/\[([^=]*)=([^\]]*)\]/',$val,$matches)) {
|
if (preg_match_all('/\[([^=]*)=([^\]]*)\]/',$val,$matches)) {
|
||||||
$parseValue = array();
|
$parseValue = array();
|
||||||
for($i=0; $i<count($matches[0]); $i++) {
|
for($i=0; $i<count($matches[0]); $i++) {
|
||||||
$parseValue[$matches[1][$i]] = array$matches[2][$i];
|
$parseValue[$matches[1][$i]] = $matches[2][$i];
|
||||||
}
|
}
|
||||||
return $parseValue;
|
return $parseValue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue