Added select baseDN with GUID
This commit is contained in:
parent
4097a777e9
commit
4cab1ed4b7
|
@ -166,7 +166,10 @@ function parse(name) {
|
|||
name[cur] === ';' ||
|
||||
name[cur] === '+'));
|
||||
}
|
||||
|
||||
if (name.substring(0,6)=='<GUID='){
|
||||
//maybe needs guid format check
|
||||
return name;
|
||||
} else {
|
||||
var rdns = [];
|
||||
|
||||
rdns.push(parseRdn());
|
||||
|
@ -180,6 +183,7 @@ function parse(name) {
|
|||
}
|
||||
|
||||
return new DN(rdns);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue