Merge pull request #3649 from vitalisator/vitalisator-patch-1

making CN with a , inside working
This commit is contained in:
Neil Lathwood
2016-07-05 09:07:39 +01:00
committed by GitHub

View File

@@ -295,7 +295,9 @@ function get_dn($samaccountname) {
}
function get_cn($dn) {
$dn = str_replace('\\,','~C0mmA~',$dn);
preg_match('/[^,]*/', $dn, $matches, PREG_OFFSET_CAPTURE, 3);
$matches[0][0] = str_replace('~C0mmA~',',',$matches[0][0]);
return $matches[0][0];
}