Changeset 636 for trunk/Modules/User
- Timestamp:
- Dec 11, 2013, 12:15:15 PM (11 years ago)
- Location:
- trunk/Modules/User
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/User/Options.php
r578 r636 74 74 if($NewPass == $NewPass2) 75 75 { 76 $DbResult = $ System->Database->query('SELECT `Pass`, '.$this->System->User->CryptPasswordSQL('"'.$OldPass.'"', '`Salt`').' AS `Hash` FROM `User` WHERE `ID`= '.$this->System->User->Id);76 $DbResult = $this->System->Database->query('SELECT `Pass`, '.$this->System->User->CryptPasswordSQL('"'.$OldPass.'"', '`Salt`').' AS `Hash` FROM `User` WHERE `ID`= '.$this->System->User->Id); 77 77 $DbRow = $DbResult->fetch_assoc(); 78 78 if($DbRow['Hash'] == $DbRow['Pass']) … … 97 97 function Show() 98 98 { 99 $this->Title = T('User settings'); 99 100 $Output = ''; 100 101 if($this->System->User->Licence(LICENCE_USER)) -
trunk/Modules/User/Profile.php
r609 r636 172 172 function Show() 173 173 { 174 $this->Title = T('User profile'); 174 175 $Output = $this->SendMail(); 175 176 if(array_key_exists('user', $_GET)) -
trunk/Modules/User/Registration.php
r618 r636 76 76 global $Config; 77 77 78 $this->Title = T('User registration'); 78 79 $Output = ''; 79 80 if(array_key_exists('user', $_POST)) -
trunk/Modules/User/UserList.php
r626 r636 7 7 function Show() 8 8 { 9 $this->Title = T('Translators'); 9 10 ImgLevelUpdate(); 10 11
Note:
See TracChangeset
for help on using the changeset viewer.