Skip to content
Snippets Groups Projects
Commit 19d54aa9 authored by André Noack's avatar André Noack
Browse files

Resolve "Ilias Schnittstelle: Automatisch angelegte Benutzer können sich in...

Resolve "Ilias Schnittstelle: Automatisch angelegte Benutzer können sich in Ilias nicht anmelden (Ilias 8)"

Closes #4081

Merge request studip/studip!2927
parent c140af0d
No related branches found
No related tags found
No related merge requests found
...@@ -171,7 +171,7 @@ class IliasUser ...@@ -171,7 +171,7 @@ class IliasUser
// data for user-account in ILIAS // data for user-account in ILIAS
$user_data['id'] = $this->id; $user_data['id'] = $this->id;
$user_data['login'] = $this->studip_login; $user_data['login'] = $this->studip_login;
$user_data['passwd'] = $this->external_password; $user_data['passwd'] = md5(uniqid()); //never gets used, only to ensure correct entry in ilias db
$user_data['firstname'] = $this->firstname; $user_data['firstname'] = $this->firstname;
$user_data['lastname'] = $this->lastname; $user_data['lastname'] = $this->lastname;
$user_data['title'] = $this->title; $user_data['title'] = $this->title;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment