self service: check if there is a Kolab extension
This commit is contained in:
parent
f3db3ffdcd
commit
c088243b48
|
@ -918,6 +918,9 @@ class kolabUser extends baseModule {
|
||||||
*/
|
*/
|
||||||
function checkSelfServiceOptions($fields, $attributes) {
|
function checkSelfServiceOptions($fields, $attributes) {
|
||||||
$return = array('messages' => array(), 'add' => array(), 'del' => array(), 'mod' => array());
|
$return = array('messages' => array(), 'add' => array(), 'del' => array(), 'mod' => array());
|
||||||
|
if (!in_array_ignore_case('kolabInetOrgPerson', $attributes['objectClass'])) {
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
$attributeNames = array(); // list of attributes which should be checked for modification
|
$attributeNames = array(); // list of attributes which should be checked for modification
|
||||||
$attributesNew = $attributes;
|
$attributesNew = $attributes;
|
||||||
// kolabFreeBusyFuture
|
// kolabFreeBusyFuture
|
||||||
|
|
Loading…
Reference in New Issue