forked from extern/egroupware
fix PHP Warning: explode(): Empty delimiter
This commit is contained in:
parent
ff47694b24
commit
08da663007
@ -1476,7 +1476,7 @@ class Ldap
|
|||||||
function _inetorgperson2egw(&$contact, $data, $cn='cn')
|
function _inetorgperson2egw(&$contact, $data, $cn='cn')
|
||||||
{
|
{
|
||||||
$matches = null;
|
$matches = null;
|
||||||
if(empty($data['givenname'][0]))
|
if (empty($data['givenname'][0]) && !empty($data['sn'][0]))
|
||||||
{
|
{
|
||||||
$parts = explode($data['sn'][0], $data[$cn][0]);
|
$parts = explode($data['sn'][0], $data[$cn][0]);
|
||||||
$contact['n_prefix'] = trim($parts[0]);
|
$contact['n_prefix'] = trim($parts[0]);
|
||||||
|
Loading…
Reference in New Issue
Block a user