Skip to content
Snippets Groups Projects
Commit 6edbf70f authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: view LDAP attributes of entry

parent 35fc21c5
No related branches found
No related tags found
No related merge requests found
......@@ -53,16 +53,6 @@ if (! $result)
dol_print_error($db,"Failed to get adherent: ".$adh->error);
exit;
}
$adh->fetch_optionals($rowid);
$adht = new AdherentType($db);
$result=$adht->fetch($adh->typeid);
if (! $result)
{
dol_print_error($db,"Failed to get type of adherent: ".$adht->error);
exit;
}
/*
* Actions
......@@ -206,12 +196,12 @@ if ($result > 0)
$info=$adh->_load_ldap_info();
$dn=$adh->_load_ldap_dn($info,1);
$search = "(".$adh->_load_ldap_dn($info,2).")";
$records=$ldap->search($dn,$search);
$records=$ldap->getAttribute($dn,$search);
//print_r($records);
// Affichage arbre
if (sizeof($records) && (! isset($records['count']) || $records['count'] > 0))
if (sizeof($records) && $records != false && (! isset($records['count']) || $records['count'] > 0))
{
if (! is_array($records))
{
......@@ -219,7 +209,7 @@ if ($result > 0)
}
else
{
$result=show_ldap_content($records,0,0,true);
$result=show_ldap_content($records,0,$records['count'],true);
}
}
else
......
......@@ -197,12 +197,12 @@ if ($result > 0)
$info=$fuser->_load_ldap_info();
$dn=$fuser->_load_ldap_dn($info,1);
$search = "(".$fuser->_load_ldap_dn($info,2).")";
$records=$ldap->search($dn,$search);
$records=$ldap->getAttribute($dn,$search);
//print_r($records);
// Affichage arbre
if (sizeof($records) && (! isset($records['count']) || $records['count'] > 0))
if (sizeof($records) && $records != false && (! isset($records['count']) || $records['count'] > 0))
{
if (! is_array($records))
{
......@@ -210,7 +210,7 @@ if ($result > 0)
}
else
{
$result=show_ldap_content($records,0,0,true);
$result=show_ldap_content($records,0,$records['count'],true);
}
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment