MDL-36119 - fix trailing whitespace

This commit is contained in:
Dan Poltawski
2012-11-08 10:18:06 +08:00
parent 809c1bee49
commit ee943e7311
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -689,7 +689,7 @@ class auth_plugin_ldap extends auth_plugin_base {
} while ($ldap_pagedresults && !empty($ldap_cookie));
}
// If LDAP paged results were used, the current connection must be completely
// If LDAP paged results were used, the current connection must be completely
// closed and a new one created, to work without paged results from here on.
if ($ldap_pagedresults) {
$this->ldap_close(true);
+2 -2
View File
@@ -379,7 +379,7 @@ class enrol_ldap_plugin extends enrol_plugin {
unset($records);
} while ($ldap_pagedresults && !empty($ldap_cookie));
// If LDAP paged results were used, the current connection must be completely
// If LDAP paged results were used, the current connection must be completely
// closed and a new one created, to work without paged results from here on.
if ($ldap_pagedresults) {
$this->ldap_close(true);
@@ -766,7 +766,7 @@ class enrol_ldap_plugin extends enrol_plugin {
unset($records);
} while ($ldap_pagedresults && !empty($ldap_cookie));
// If LDAP paged results were used, the current connection must be completely
// If LDAP paged results were used, the current connection must be completely
// closed and a new one created, to work without paged results from here on.
if ($ldap_pagedresults) {
$this->ldap_close(true);
+1 -1
View File
@@ -372,7 +372,7 @@ function ldap_stripslashes($text) {
/**
* Check if PHP supports LDAP paged results and we can use them (we have to use LDAP
* Check if PHP supports LDAP paged results and we can use them (we have to use LDAP
* version 3, otherwise the server doesn't use them).
*
* @param ldapversion integer The LDAP protocol version we use.