Changeset 347


Ignore:
Timestamp:
Jan 17, 2012, 9:15:29 PM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Záznam operací uživatelů přepracován na systémový modul.
Location:
trunk
Files:
3 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Module.php

    r343 r347  
    123123    $Files = scandir(dirname(__FILE__));
    124124    foreach($Files as $File)
    125     if(is_dir(dirname(__FILE__).'/'.$File) and ($File != '.') and ($File != '..'))
     125    if(is_dir(dirname(__FILE__).'/'.$File) and ($File != '.') and ($File != '..') and (substr($File, 0, 1) != '.'))
    126126    {
    127127      $ModulesOnDisk[] = $File;
  • trunk/global.php

    r345 r347  
    1313include_once('Modules/page.php');
    1414include_once('file.php');
    15 include_once('Modules/log.php');
    1615include_once('aktuality/news.php');
    1716include_once('finance/bills.php');
     
    210209  $System->Init();
    211210  if(isset($_SERVER['REMOTE_ADDR'])) $System->Models['User']->Check();
    212   $System->AddModule(new Log());
    213211  $System->AddModule(new News());
    214212  $System->AddModule(new Bill());
Note: See TracChangeset for help on using the changeset viewer.