Changeset 392 for trunk/global.php


Ignore:
Timestamp:
Mar 1, 2012, 9:36:37 PM (13 years ago)
Author:
chronos
Message:
  • Přidáno: Třídy Mail pro zaobalení zasílání pošty přes funkci mail. Přepracována knihovna libmail.php.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/global.php

    r329 r392  
    88//include('error.php');
    99include_once('code.php');
     10include_once('Mail.php');
    1011include_once('module.php');
    1112include_once('forms.php');
     
    193194function GlobalInit()
    194195{
    195   global $Config, $Database, $System, $ScriptTimeStart, $ConfigFileName;
     196  global $Config, $Database, $System, $ScriptTimeStart, $ConfigFileName, $Mail;
    196197 
    197198  $ScriptTimeStart = GetMicrotime();
     
    207208  $Database->ShowSQLError = $Config['Web']['ShowSQLError'];
    208209  $Database->ShowSQLQuery = $Config['Web']['ShowSQLQuery'];
     210 
     211  $Mail = new Mail();
    209212
    210213  $System = new System();
Note: See TracChangeset for help on using the changeset viewer.