Changeset 838 for trunk/includes/global.php
- Timestamp:
- Jan 9, 2016, 11:45:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/global.php
r836 r838 1 1 <?php 2 2 3 include_once(dirname(__FILE__).'/Database.php'); 4 include_once(dirname(__FILE__).'/Base.php'); 3 include_once(dirname(__FILE__).'/../Packages/Common/Common.php'); 5 4 include_once(dirname(__FILE__).'/system.php'); 6 5 include_once(dirname(__FILE__).'/Update.php'); 7 include_once(dirname(__FILE__).'/Page .php');6 include_once(dirname(__FILE__).'/PageEdit.php'); 8 7 if(file_exists(dirname(__FILE__).'/config.php')) 9 8 include_once(dirname(__FILE__).'/config.php'); 10 9 include_once(dirname(__FILE__).'/Version.php'); 11 include_once(dirname(__FILE__).'/AppModule.php');12 10 include_once(dirname(__FILE__).'/Locale.php'); 13 include_once(dirname(__FILE__).'/UTF8.php');14 11 require_once(dirname(__FILE__).'/../HTML/BBCodeParser2.php'); 15 12 … … 41 38 if(isset($InitSystem) and $InitSystem) 42 39 { 43 $System = new System();40 $System = new Core(); 44 41 $System->DoNotShowPage = true; 45 42 $System->Run(); 46 $User = $System->User; // Back compatibility, will be removed47 43 } 48 44
Note:
See TracChangeset
for help on using the changeset viewer.