fixed PHP notices
This commit is contained in:
parent
fa5641d80f
commit
216cf67e31
|
@ -3,7 +3,7 @@
|
||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
Copyright (C) 2009 - 2010 Roland Gruber
|
Copyright (C) 2009 - 2011 Roland Gruber
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -513,7 +513,7 @@ class eduPerson extends baseModule {
|
||||||
function load_profile($profile) {
|
function load_profile($profile) {
|
||||||
parent::load_profile($profile);
|
parent::load_profile($profile);
|
||||||
// add extension
|
// add extension
|
||||||
if ($profile['eduPerson_addExt'][0] == "true") {
|
if (isset($profile['eduPerson_addExt'][0]) && ($profile['eduPerson_addExt'][0] == "true")) {
|
||||||
if (!in_array('eduPerson', $this->attributes['objectClass'])) {
|
if (!in_array('eduPerson', $this->attributes['objectClass'])) {
|
||||||
$this->attributes['objectClass'][] = 'eduPerson';
|
$this->attributes['objectClass'][] = 'eduPerson';
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
Copyright (C) 2010 Roland Gruber
|
Copyright (C) 2011 Roland Gruber
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -266,7 +266,7 @@ class hostObject extends baseModule {
|
||||||
// profile mappings in meta data
|
// profile mappings in meta data
|
||||||
parent::load_profile($profile);
|
parent::load_profile($profile);
|
||||||
// add extension
|
// add extension
|
||||||
if ($profile['hostObject_addExt'][0] == "true") {
|
if (isset($profile['hostObject_addExt'][0]) && ($profile['hostObject_addExt'][0] == "true")) {
|
||||||
if (!in_array('hostObject', $this->attributes['objectClass'])) {
|
if (!in_array('hostObject', $this->attributes['objectClass'])) {
|
||||||
$this->attributes['objectClass'][] = 'hostObject';
|
$this->attributes['objectClass'][] = 'hostObject';
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
Copyright (C) 2008 - 2010 Roland Gruber
|
Copyright (C) 2008 - 2011 Roland Gruber
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -360,7 +360,7 @@ class phpGroupwareUser extends baseModule implements passwordService {
|
||||||
function load_profile($profile) {
|
function load_profile($profile) {
|
||||||
parent::load_profile($profile);
|
parent::load_profile($profile);
|
||||||
// add extension
|
// add extension
|
||||||
if ($profile['phpGroupwareUser_addExt'][0] == "true") {
|
if (isset($profile['phpGroupwareUser_addExt'][0]) && ($profile['phpGroupwareUser_addExt'][0] == "true")) {
|
||||||
if (!in_array('phpgwAccount', $this->attributes['objectClass'])) {
|
if (!in_array('phpgwAccount', $this->attributes['objectClass'])) {
|
||||||
$this->attributes['objectClass'][] = 'phpgwAccount';
|
$this->attributes['objectClass'][] = 'phpgwAccount';
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ $Id$
|
||||||
|
|
||||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
Copyright (C) 2003 - 2006 Tilo Lutz
|
Copyright (C) 2003 - 2006 Tilo Lutz
|
||||||
Copyright (C) 2007 - 2010 Roland Gruber
|
Copyright (C) 2007 - 2011 Roland Gruber
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -527,7 +527,7 @@ class shadowAccount extends baseModule implements passwordService {
|
||||||
// profile mappings in meta data
|
// profile mappings in meta data
|
||||||
parent::load_profile($profile);
|
parent::load_profile($profile);
|
||||||
// add extension
|
// add extension
|
||||||
if ($profile['shadowAccount_addExt'][0] == "true") {
|
if (isset($profile['shadowAccount_addExt'][0]) && ($profile['shadowAccount_addExt'][0] == "true")) {
|
||||||
if (!in_array('shadowAccount', $this->attributes['objectClass'])) {
|
if (!in_array('shadowAccount', $this->attributes['objectClass'])) {
|
||||||
$this->attributes['objectClass'][] = 'shadowAccount';
|
$this->attributes['objectClass'][] = 'shadowAccount';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue