Skip to content

Commit 181861e

Browse files
committed
Merge branch '4.1' into 4.2
* 4.1: Fixed typos
2 parents d29de68 + c38f293 commit 181861e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/ldap.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ method to update multiple attributes at once::
155155

156156
$entryManager = $ldap->getEntryManager();
157157

158-
// Adding multiple email adresses at once
158+
// Adding multiple email addresses at once
159159
$entryManager->applyOperations($entry->getDn(), array(
160-
new UpdateOpteration(LDAP_MODIFY_BATCH_ADD, 'mail', '[email protected]'),
161-
new UpdateOpteration(LDAP_MODIFY_BATCH_ADD, 'mail', '[email protected]'),
160+
new UpdateOperation(LDAP_MODIFY_BATCH_ADD, 'mail', '[email protected]'),
161+
new UpdateOperation(LDAP_MODIFY_BATCH_ADD, 'mail', '[email protected]'),
162162
));
163163

164164
Possible operation types are ``LDAP_MODIFY_BATCH_ADD``, ``LDAP_MODIFY_BATCH_REMOVE``,

0 commit comments

Comments
 (0)