Changeset 168 for www/global.php
- Timestamp:
- Mar 24, 2009, 1:36:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/global.php
r167 r168 7 7 foreach($_GET as $Index => $Item) $_GET[$Index] = addslashes($Item); 8 8 9 if( !isset($SessionDisable)) session_start();9 if(isset($_SERVER['REMOTE_ADDR'])) session_start(); 10 10 include('config.php'); 11 11 include('database.php'); … … 45 45 include_once('user.php'); 46 46 $System->AddModule(new User()); 47 $System->Modules['User']->Check();47 if(isset($_SERVER['REMOTE_ADDR'])) $System->Modules['User']->Check(); 48 48 include_once('aktuality/news.php'); 49 49 $System->AddModule(new News());
Note:
See TracChangeset
for help on using the changeset viewer.