mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +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 (isset($_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)) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue