Changeset 726


Ignore:
Timestamp:
Jan 7, 2014, 9:05:55 PM (11 years ago)
Author:
chronos
Message:
  • Modified: Enabled setting of database query logging to file. File permissions should be set to write only for web server user account.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/FrontPage/FrontPage.php

    r712 r726  
    3636                        if(array_key_exists('LoginUser', $_POST) and array_key_exists('LoginPass', $_POST))
    3737                        {
    38                                 if(array_key_exists('LoginUser', $_POST)) $StayLogged = true;
     38                                if(array_key_exists('StayLogged', $_POST)) $StayLogged = true;
    3939                                  else $StayLogged = false;
    4040                                $this->System->User->Login($_POST['LoginUser'], $_POST['LoginPass'], $StayLogged);
  • trunk/includes/Version.php

    r725 r726  
    66// and system will need database update.
    77
    8 $Revision = 725; // Subversion revision
     8$Revision = 726; // Subversion revision
    99$DatabaseRevision = 725; // Database structure revision
    1010$ReleaseTime = '2014-01-07';
  • trunk/includes/system.php

    r712 r726  
    3333    $this->Database->ShowSQLQuery = $this->Config['Web']['ShowSQLQuery'];
    3434    $this->Database->ShowSQLError = $this->Config['Web']['ShowSQLError'];
    35     //$this->Database->LogSQLQuery = $this->Config['Web']['LogSQLQuery'];
     35    $this->Database->LogSQLQuery = $this->Config['Web']['LogSQLQuery'];
    3636    $this->ModuleManager = new AppModuleManager();
    3737   
Note: See TracChangeset for help on using the changeset viewer.