Changeset 347
- Timestamp:
- Jan 17, 2012, 9:15:29 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Module.php
r343 r347 123 123 $Files = scandir(dirname(__FILE__)); 124 124 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) != '.')) 126 126 { 127 127 $ModulesOnDisk[] = $File; -
trunk/global.php
r345 r347 13 13 include_once('Modules/page.php'); 14 14 include_once('file.php'); 15 include_once('Modules/log.php');16 15 include_once('aktuality/news.php'); 17 16 include_once('finance/bills.php'); … … 210 209 $System->Init(); 211 210 if(isset($_SERVER['REMOTE_ADDR'])) $System->Models['User']->Check(); 212 $System->AddModule(new Log());213 211 $System->AddModule(new News()); 214 212 $System->AddModule(new Bill());
Note:
See TracChangeset
for help on using the changeset viewer.