mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-18 22:43:47 +01:00
added urldecode() of object DN in request
This commit is contained in:
parent
d1d25972fe
commit
babade5995
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ require_once 'core.php';
|
||||||
if(LSsession :: startLSsession()) {
|
if(LSsession :: startLSsession()) {
|
||||||
if (isset($_REQUEST['LSobject'])) {
|
if (isset($_REQUEST['LSobject'])) {
|
||||||
$LSobject = $_REQUEST['LSobject'];
|
$LSobject = $_REQUEST['LSobject'];
|
||||||
$dn = isset($_REQUEST['dn'])?$_REQUEST['dn']:null;
|
$dn = isset($_REQUEST['dn'])?urldecode($_REQUEST['dn']):null;
|
||||||
|
|
||||||
if (LSsession :: in_menu($LSobject)) {
|
if (LSsession :: in_menu($LSobject)) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue