Changeset 168 for www/global.php


Ignore:
Timestamp:
Mar 24, 2009, 1:36:24 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Ukládání poslední otevřené stránky do tabulky online uživatelů.
  • Opraveno: Nesledovat online uživatele pokud je skript spuštěn místně.
  • Opraveno: Chyba zobrazování odkazů na hlavní stránce dle práv uživatelů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • www/global.php

    r167 r168  
    77foreach($_GET as $Index => $Item) $_GET[$Index] = addslashes($Item);
    88
    9 if(!isset($SessionDisable)) session_start();
     9if(isset($_SERVER['REMOTE_ADDR'])) session_start();
    1010include('config.php');
    1111include('database.php');
     
    4545include_once('user.php');
    4646$System->AddModule(new User());
    47 $System->Modules['User']->Check();
     47if(isset($_SERVER['REMOTE_ADDR'])) $System->Modules['User']->Check();
    4848include_once('aktuality/news.php');
    4949$System->AddModule(new News());
Note: See TracChangeset for help on using the changeset viewer.