Changeset 620


Ignore:
Timestamp:
Dec 4, 2013, 1:11:42 AM (11 years ago)
Author:
chronos
Message:
  • Fixed: Installation page was displaying because of invalid LocaleManager initialization.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/install.php

    r619 r620  
    44include_once(dirname(__FILE__).'/../includes/AppModule.php');
    55include_once(dirname(__FILE__).'/../includes/Base.php');
     6include_once(dirname(__FILE__).'/../includes/global.php');
    67include_once(dirname(__FILE__).'/../includes/system.php');
    78include_once(dirname(__FILE__).'/../includes/Update.php');
     
    1213include_once(dirname(__FILE__).'/../includes/Version.php');
    1314include_once(dirname(__FILE__).'/../includes/Locale.php');
    14 $Locale = new LocaleFile();
     15$Locale = new LocaleManager();
    1516$Locale->Dir = dirname(__FILE__).'/../locale';
    16 $Locale->Load($Config['Web']['Locale']);
     17$Locale->LoadLocale('en');
    1718
    1819function ControlPanel()
  • trunk/includes/Version.php

    r619 r620  
    66// and system will need database update.
    77
    8 $Revision = 619; // Subversion revision
     8$Revision = 620; // Subversion revision
    99$DatabaseRevision = 610; // Database structure revision
    1010$ReleaseTime = '2013-12-04';
Note: See TracChangeset for help on using the changeset viewer.