Changeset 903 for trunk/Application
- Timestamp:
- Feb 19, 2021, 10:12:21 AM (4 years ago)
- Location:
- trunk/Application
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Core.php
r899 r903 151 151 $this->ModuleManager->LoadModule(dirname(__FILE__).'/../Packages/Common/Modules/ModuleManager.php'); 152 152 if (file_exists($this->ModuleManager->FileName)) $this->ModuleManager->LoadState(); 153 $this->ModuleManager->StartAll(array(ModuleCondition::Enabled)); 153 if (ModuleSetup::Cast($ModuleSetup)->CheckState()) 154 { 155 $this->ModuleManager->StartAll(array(ModuleCondition::Enabled)); 156 } 154 157 } 155 158 -
trunk/Application/Version.php
r901 r903 1 1 <?php 2 2 3 $Revision = 90 1; // Subversion revision3 $Revision = 903; // Subversion revision 4 4 $DatabaseRevision = 901; // SQL structure revision 5 $ReleaseTime = strtotime('2021-02-1 7');5 $ReleaseTime = strtotime('2021-02-19');
Note:
See TracChangeset
for help on using the changeset viewer.