Aleksander Machniak
2015-07-02 70422cd7a227c2479a1889fecb533107e845ea31
Fix Fatal error after last commit
1 files modified
4 ■■■ changed files
program/lib/Roundcube/rcube_ldap.php 4 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_ldap.php
@@ -836,7 +836,9 @@
                // map address book fields into ldap attributes
                $me         = $this;
                $attributes = array();
                array_walk((array) $fields, function($field) use ($me, &$attributes) {
                $fields     = (array) $fields;
                array_walk($fields, function($field) use ($me, &$attributes) {
                    if ($me->coltypes[$field] && ($attrs = (array)$me->coltypes[$field]['attributes'])) {
                        $attributes = array_merge($attributes, $attrs);
                    }