mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-18 22:43:47 +01:00
Added urldecode() of load parameter in request
This commit is contained in:
parent
cf9b24f399
commit
1b529edb22
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ if(LSsession :: startLSsession()) {
|
||||||
$object = new $LSobject();
|
$object = new $LSobject();
|
||||||
|
|
||||||
if ($_GET['load']!='') {
|
if ($_GET['load']!='') {
|
||||||
$form = $object -> getForm('create',$_GET['load']);
|
$form = $object -> getForm('create',urldecode($_GET['load']));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$form = $object -> getForm('create');
|
$form = $object -> getForm('create');
|
||||||
|
|
Loading…
Reference in a new issue