diff options
author | Veres Lajos <vlajos@gmail.com> | 2013-07-13 13:37:04 +0100 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-07-15 00:18:57 -0700 |
commit | 72085b0e5f2fe6e69a83d8f43f92c5fe0d8bace3 (patch) | |
tree | 88547d65722d637a8a1eb7d2f4fa1f09394beb76 /ext/ldap | |
parent | b8a2b254a1a629556d2c5d6a387026b9e774c868 (diff) | |
download | php-git-72085b0e5f2fe6e69a83d8f43f92c5fe0d8bace3.tar.gz |
typo fixes
Diffstat (limited to 'ext/ldap')
-rw-r--r-- | ext/ldap/tests/ldap_get_values_len_error.phpt | 2 | ||||
-rw-r--r-- | ext/ldap/tests/ldap_set_rebind_proc_error.phpt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/ldap/tests/ldap_get_values_len_error.phpt b/ext/ldap/tests/ldap_get_values_len_error.phpt index 8caea1479a..45f9031df4 100644 --- a/ext/ldap/tests/ldap_get_values_len_error.phpt +++ b/ext/ldap/tests/ldap_get_values_len_error.phpt @@ -20,7 +20,7 @@ var_dump(ldap_get_values_len($link)); var_dump(ldap_get_values_len($link, $entry)); var_dump(ldap_get_values_len($link, $entry, "weirdAttribute", "Additional data")); -var_dump(ldap_get_values_len($link, $entry, "inexistantAttribute")); +var_dump(ldap_get_values_len($link, $entry, "inexistentAttribute")); ?> ===DONE=== --CLEAN-- diff --git a/ext/ldap/tests/ldap_set_rebind_proc_error.phpt b/ext/ldap/tests/ldap_set_rebind_proc_error.phpt index 966612f652..c8c7985826 100644 --- a/ext/ldap/tests/ldap_set_rebind_proc_error.phpt +++ b/ext/ldap/tests/ldap_set_rebind_proc_error.phpt @@ -35,7 +35,7 @@ function rebind_proc ($ds, $ldap_url) { $link = ldap_connect($host, $port); var_dump(ldap_set_rebind_proc($link)); var_dump(ldap_set_rebind_proc($link, "rebind_proc", "Additional data")); -var_dump(ldap_set_rebind_proc($link, "rebind_proc_inexistant")); +var_dump(ldap_set_rebind_proc($link, "rebind_proc_inexistent")); ?> ===DONE=== --EXPECTF-- @@ -45,6 +45,6 @@ bool(false) Warning: ldap_set_rebind_proc() expects exactly 2 parameters, 3 given in %s on line %d bool(false) -Warning: ldap_set_rebind_proc(): Two arguments expected for 'rebind_proc_inexistant' to be a valid callback in %s on line %d +Warning: ldap_set_rebind_proc(): Two arguments expected for 'rebind_proc_inexistent' to be a valid callback in %s on line %d bool(false) ===DONE=== |