Ignore:
Timestamp:
Jan 9, 2016, 11:45:01 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Some libraries moved to Common package located at Packages directory.
  • Modified: Application class System renamed to Core. System class is not just basic parent class for application.
  • Fixed: alert file now use same application class as other files.
  • Modified: Error application module.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/global.php

    r836 r838  
    11<?php
    22
    3 include_once(dirname(__FILE__).'/Database.php');
    4 include_once(dirname(__FILE__).'/Base.php');
     3include_once(dirname(__FILE__).'/../Packages/Common/Common.php');
    54include_once(dirname(__FILE__).'/system.php');
    65include_once(dirname(__FILE__).'/Update.php');
    7 include_once(dirname(__FILE__).'/Page.php');
     6include_once(dirname(__FILE__).'/PageEdit.php');
    87if(file_exists(dirname(__FILE__).'/config.php'))
    98  include_once(dirname(__FILE__).'/config.php');
    109include_once(dirname(__FILE__).'/Version.php');
    11 include_once(dirname(__FILE__).'/AppModule.php');
    1210include_once(dirname(__FILE__).'/Locale.php');
    13 include_once(dirname(__FILE__).'/UTF8.php');
    1411require_once(dirname(__FILE__).'/../HTML/BBCodeParser2.php');
    1512
     
    4138if(isset($InitSystem) and $InitSystem)
    4239{
    43   $System = new System();
     40  $System = new Core();
    4441  $System->DoNotShowPage = true;
    4542  $System->Run();
    46   $User = $System->User; // Back compatibility, will be removed
    4743}
    4844
Note: See TracChangeset for help on using the changeset viewer.