Commit 83835b6391b8484b19d470289028ff2ebf245a2d

Authored by Michael Joseph
1 parent b114a14f

removed duplicate md5


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1652 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserBL.php
... ... @@ -84,7 +84,7 @@ if (checkSession()) {
84 84 // if db authentication
85 85 if(isset($fFromDb)) {
86 86 //User($sNewUserName, $sNewName, $sNewPassword, $iNewQuotaMax, $sNewEmail, $sNewMobile, $bNewEmailNotification, $bNewSmsNotification, $sNewLdapDn, $iNewMaxSessions, $iNewLanguageID)
87   - $oUser = new User($fUsername,$fName,md5($fPassword),0,$fEmail,$fMobile,$fEmailNotification,$fSmsNotification,0,1,0);
  87 + $oUser = new User($fUsername,$fName,$fPassword,0,$fEmail,$fMobile,$fEmailNotification,$fSmsNotification,0,1,0);
88 88  
89 89 } else {
90 90 $oUser = new User($fUsername,$fName,0,0,$fEmail,$fMobile,$fEmailNotification,$fSmsNotification,$fLdap,1,0);
... ...