Ignore:
Timestamp:
Jan 22, 2021, 12:04:30 AM (4 years ago)
Author:
chronos
Message:
  • Modified: Setup module is always installed and enabled to be executed as base system module. From Setup module all other system modules can be installed.
  • Added: Allow to install, uninstall, enable, disable and upgrade all user modules.
  • Added: Created ModuleManager app module for managing other modules.
  • Modified: Keep InstalledVersion for installed modules in ModulesConfig.php.
  • Added: Distinction between system, library and application module types.
File:
1 edited

Legend:

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

    r895 r897  
    6262    $this->OnlineStateTimeout = 600; // in seconds
    6363    $this->PasswordHash = new PasswordHash();
    64     $this->User = array('Id' => null, 'Member' => null);
     64    $this->User = array('Id' => null);
    6565  }
    6666
     
    130130    {
    131131      $Query = $this->Database->select('User', '*', 'Id IS NULL');
    132       $this->User = array('Id' => null, 'Member' => null);
     132      $this->User = array('Id' => null);
    133133      $Result = USER_NOT_LOGGED;
    134134    }
Note: See TracChangeset for help on using the changeset viewer.