Commit 2739f0e9b653c684d4b772055005b7b478b3717b

Authored by bshuttle
1 parent 08b1edd4

- new users could not login, since creation didn't md5 the passwords after the User.inc changes.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4315 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/userManagement.php
... ... @@ -360,7 +360,7 @@ class KTUserAdminDispatcher extends KTAdminDispatcher {
360 360 $oUser =& User::createFromArray(array(
361 361 "sUsername" => $username,
362 362 "sName" => $name,
363   - "sPassword" => $password,
  363 + "sPassword" => md5($password),
364 364 "iQuotaMax" => 0,
365 365 "iQuotaCurrent" => 0,
366 366 "sEmail" => $email_address,
... ...