mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
making CN with a , inside working
a workaround to mask a , sign in a DN before CN is extracted resolves #3533
This commit is contained in:
@@ -295,7 +295,9 @@ function get_dn($samaccountname) {
|
||||
}
|
||||
|
||||
function get_cn($dn) {
|
||||
dn = str_replace('\\,','~',$dn);
|
||||
preg_match('/[^,]*/', $dn, $matches, PREG_OFFSET_CAPTURE, 3);
|
||||
$matches[0][0] = str_replace('~',',',$matches[0][0]);
|
||||
return $matches[0][0];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user