mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2025-01-05 15:23:47 +01:00
- Fix recursive enabled check in select/view
This commit is contained in:
parent
2ed2dcac9d
commit
6c08a4d3f6
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ if(LSsession :: startLSsession()) {
|
||||||
|
|
||||||
$searchForm = array (
|
$searchForm = array (
|
||||||
'action' => $_SERVER['PHP_SELF'],
|
'action' => $_SERVER['PHP_SELF'],
|
||||||
'recursive' => (! LSsession :: isSubDnLSobject($LSobject) ),
|
'recursive' => (! LSsession :: isSubDnLSobject($LSobject) && LSsession :: subDnIsEnabled() ),
|
||||||
'multiple' => $multiple,
|
'multiple' => $multiple,
|
||||||
'labels' => array (
|
'labels' => array (
|
||||||
'submit' => _('Search'),
|
'submit' => _('Search'),
|
||||||
|
|
|
@ -97,7 +97,7 @@ if(LSsession :: startLSsession()) {
|
||||||
|
|
||||||
$searchForm = array (
|
$searchForm = array (
|
||||||
'action' => $_SERVER['PHP_SELF'],
|
'action' => $_SERVER['PHP_SELF'],
|
||||||
'recursive' => (! LSsession :: isSubDnLSobject($LSobject) ),
|
'recursive' => (! LSsession :: isSubDnLSobject($LSobject) && LSsession :: subDnIsEnabled() ),
|
||||||
'labels' => array (
|
'labels' => array (
|
||||||
'submit' => _('Search'),
|
'submit' => _('Search'),
|
||||||
'approx' => _('Approximative search'),
|
'approx' => _('Approximative search'),
|
||||||
|
|
Loading…
Reference in a new issue