Changeset 553 for trunk/Common
- Timestamp:
- Jul 7, 2013, 11:38:22 PM (12 years ago)
- Location:
- trunk/Common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Global.php
r550 r553 51 51 include_once(dirname(__FILE__).'/../Modules/Stock/Stock.php'); 52 52 include_once(dirname(__FILE__).'/../Modules/Search/Search.php'); 53 include_once(dirname(__FILE__).'/../Modules/EmailQueue/EmailQueue.php'); 53 54 54 55 function GlobalInit() … … 97 98 $System->ModuleManager->RegisterModule(new ModuleFile($System)); 98 99 $System->ModuleManager->RegisterModule(new ModuleUser($System)); 100 $System->ModuleManager->RegisterModule(new ModuleEmailQueue($System)); 99 101 $System->ModuleManager->RegisterModule(new ModuleMeteostation($System)); 100 102 $System->ModuleManager->RegisterModule(new ModulePortal($System)); -
trunk/Common/System.php
r548 r553 1 1 <?php 2 3 include_once(dirname(__FILE__).'/EmailQueue.php');4 2 5 3 class System … … 15 13 var $PathItems; 16 14 var $RootURLFolder; 17 var $EmailQueue;18 15 19 16 function __construct() … … 24 21 $this->Database = new Database(); 25 22 $this->FormManager = new FormManager($this->Database); 26 $this->EmailQueue = new EmailQueue($this);27 23 } 28 24 -
trunk/Common/Version.php
r552 r553 1 1 <?php 2 2 3 $Revision = 55 2; // Subversion revision3 $Revision = 553; // Subversion revision 4 4 $DatabaseRevision = 551; // SQL structure revision 5 5 $ReleaseTime = '2013-07-07';
Note:
See TracChangeset
for help on using the changeset viewer.