mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Merge pull request #3649 from vitalisator/vitalisator-patch-1
making CN with a , inside working
This commit is contained in:
@@ -295,7 +295,9 @@ function get_dn($samaccountname) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function get_cn($dn) {
|
function get_cn($dn) {
|
||||||
|
$dn = str_replace('\\,','~C0mmA~',$dn);
|
||||||
preg_match('/[^,]*/', $dn, $matches, PREG_OFFSET_CAPTURE, 3);
|
preg_match('/[^,]*/', $dn, $matches, PREG_OFFSET_CAPTURE, 3);
|
||||||
|
$matches[0][0] = str_replace('~C0mmA~',',',$matches[0][0]);
|
||||||
return $matches[0][0];
|
return $matches[0][0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user