source: trunk/admin/index.php@ 548

Last change on this file since 548 was 548, checked in by chronos, 12 years ago
  • Odstraněno: Ukončovací PHP značka.
File size: 776 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../Common/Database.php');
4//include_once(dirname(__FILE__).'/../includes/system.php');
5include_once(dirname(__FILE__).'/../Common/Update.php');
6include_once(dirname(__FILE__).'/DefaultConfig.php');
7if(file_exists(dirname(__FILE__).'/../config.php'))
8 include_once(dirname(__FILE__).'/../config.php');
9include_once(dirname(__FILE__).'/FullInstall.php');
10include_once(dirname(__FILE__).'/Updates.php');
11include_once(dirname(__FILE__).'/../Common/Version.php');
12
13session_start();
14
15$UpdateInterface = new UpdateInterface();
16$UpdateInterface->ConfigDefinition = $ConfigDefinition;
17$UpdateInterface->DatabaseRevision = $DatabaseRevision;
18$UpdateInterface->Config = &$Config;
19$UpdateInterface->Updates = &$Updates;
20$UpdateInterface->Show();
Note: See TracBrowser for help on using the repository browser.