Changeset 33 for global.php


Ignore:
Timestamp:
Mar 12, 2009, 6:01:58 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Vlastní obsluha chyb.
  • Přidáno: Import dat z databáze centrály.
  • Opraveno: Řazení řádků v tabulkách při přepínání stránek.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • global.php

    r21 r33  
    55foreach($_GET as $Index => $Item) $_GET[$Index] = addslashes($Item);
    66
    7 session_start();
     7if(!isset($SessionDisable)) session_start();
    88include('config.php');
     9include('error.php');
    910include('database.php');
    10 include_once('code.php');
     11include('code.php');
    1112$Database = new Database($Config['Database']['Host'], $Config['Database']['User'], $Config['Database']['Password'], $Config['Database']['Database']);
    1213$Database->Prefix = $Config['Database']['Prefix'];
    1314$Database->charset($Config['Database']['Charset']);
    1415$Database->ShowError = TRUE;
    15 include_once('module.php');
    16 include_once('page.php');
    17 include_once('forms.php');
    18 include_once('types/include.php');
    19 include_once('lists/include.php');
    20 include_once('base.php');
     16include('module.php');
     17include('page.php');
     18include('forms.php');
     19include('types/include.php');
     20include('lists/include.php');
     21include('base.php');
    2122
    2223class System extends Module
Note: See TracChangeset for help on using the changeset viewer.