Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
moodle-auth_ldap_syncplus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elc
moodle-auth_ldap_syncplus
Commits
5984493c
Commit
5984493c
authored
10 years ago
by
Alexander Bias
Browse files
Options
Downloads
Patches
Plain Diff
Adopt a code change in Moodle core auth_ldap
parent
c6e62f71
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+1
-0
1 addition, 0 deletions
README.md
auth.php
+1
-0
1 addition, 0 deletions
auth.php
version.php
+2
-2
2 additions, 2 deletions
version.php
with
4 additions
and
2 deletions
README.md
+
1
−
0
View file @
5984493c
...
...
@@ -16,6 +16,7 @@ This plugin requires Moodle 2.7+
Changes
-------
*
2014-10-08 - Adopt a code change in Moodle core auth_ldap
*
2014-09-12 - Bugfix: Fetching user details from LDAP on manual user creation didn't work in some circumstances
*
2014-09-02 - Bugfix: Check if LDAP auth is really used on manual user creation
*
2014-08-29 - Support login via email for first-time LDAP logins (MDL-46638)
...
...
This diff is collapsed.
Click to expand it.
auth.php
+
1
−
0
View file @
5984493c
...
...
@@ -114,6 +114,7 @@ class auth_plugin_ldap_syncplus extends auth_plugin_ldap {
do
{
$value
=
ldap_get_values_len
(
$ldapconnection
,
$entry
,
$this
->
config
->
user_attribute
);
$value
=
core_text
::
convert
(
$value
[
0
],
$this
->
config
->
ldapencoding
,
'utf-8'
);
$value
=
trim
(
$value
);
$this
->
ldap_bulk_insert
(
$value
);
}
while
(
$entry
=
ldap_next_entry
(
$ldapconnection
,
$entry
));
}
...
...
This diff is collapsed.
Click to expand it.
version.php
+
2
−
2
View file @
5984493c
...
...
@@ -26,8 +26,8 @@
defined
(
'MOODLE_INTERNAL'
)
||
die
();
$plugin
->
component
=
'auth_ldap_syncplus'
;
$plugin
->
version
=
2014051207
;
$plugin
->
release
=
'2.7 (Build: 2014
0917
00)'
;
$plugin
->
version
=
2014051207
8
;
$plugin
->
release
=
'2.7 (Build: 2014
1008
00)'
;
$plugin
->
requires
=
2014051200
;
$plugin
->
maturity
=
MATURITY_STABLE
;
$plugin
->
dependencies
=
array
(
'auth_ldap'
=>
2014051200
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment