Ignore:
Timestamp:
Dec 11, 2013, 12:15:15 PM (11 years ago)
Author:
chronos
Message:
  • Added: Pages should have set title which is used in HTML header to show title in web browser title bar.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/User/Options.php

    r578 r636  
    7474                                if($NewPass == $NewPass2)
    7575                                {
    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);
    7777                                        $DbRow = $DbResult->fetch_assoc();
    7878                                        if($DbRow['Hash'] == $DbRow['Pass'])
     
    9797        function Show()
    9898        {
     99                $this->Title = T('User settings');
    99100                $Output = '';
    100101                if($this->System->User->Licence(LICENCE_USER))
Note: See TracChangeset for help on using the changeset viewer.