mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
add urldecode() of object DN in GET request
This commit is contained in:
parent
bb5f5d7283
commit
1b73c32ec3
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ if(LSsession :: startLSsession()) {
|
||||||
$dn = $_POST['LSform_objectdn'];
|
$dn = $_POST['LSform_objectdn'];
|
||||||
}
|
}
|
||||||
else if (isset($_GET['dn'])) {
|
else if (isset($_GET['dn'])) {
|
||||||
$dn = $_GET['dn'];
|
$dn = urldecode($_GET['dn']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((isset($dn)) && (isset($LSobject)) ) {
|
if ((isset($dn)) && (isset($LSobject)) ) {
|
||||||
|
|
Loading…
Reference in a new issue