Changeset 561 for trunk/includes/global.php
- Timestamp:
- Aug 13, 2013, 11:31:34 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/global.php
r558 r561 24 24 include_once(dirname(__FILE__).'/../Modules/Server/Server.php'); 25 25 include_once(dirname(__FILE__).'/../Modules/ClientVersion/ClientVersion.php'); 26 include_once(dirname(__FILE__).'/../Modules/ShoutBox/ShoutBox.php'); 26 27 include_once(dirname(__FILE__).'/../Modules/FrontPage/FrontPage.php'); 27 28 … … 71 72 $System->ModuleManager->RegisterModule(new ModuleReferrer($System)); 72 73 $System->ModuleManager->Modules['Referrer']->Excluded[] = $System->Config['Web']['Host']; 73 $System->ModuleManager->RegisterModule(new ModuleFrontPage($System));74 74 $System->ModuleManager->RegisterModule(new ModuleTeam($System)); 75 75 $System->ModuleManager->RegisterModule(new ModuleDictionary($System)); … … 79 79 $System->ModuleManager->RegisterModule(new ModuleServer($System)); 80 80 $System->ModuleManager->RegisterModule(new ModuleClientVersion($System)); 81 $System->ModuleManager->RegisterModule(new ModuleShoutBox($System)); 82 $System->ModuleManager->RegisterModule(new ModuleFrontPage($System)); 81 83 $System->ModuleManager->StartAll(); 82 84 } 83 85 84 $RSSChannels = array( 85 array('Title' => 'Změny systému', 'Channel' => 'news'), 86 array('Title' => 'Poslední překlady', 'Channel' => 'translation'), 87 array('Title' => 'Kecátko', 'Channel' => 'shoutbox'), 88 ); 86 $System->RegisterRSS(array('Title' => 'Změny systému', 'Channel' => 'news')); 89 87 90 88 function GetMicrotime()
Note:
See TracChangeset
for help on using the changeset viewer.