Changeset 74 for trunk/www/index.php


Ignore:
Timestamp:
Aug 23, 2009, 9:38:51 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Zobrazení počítačů ve skupině.
  • Opraveno: Různé opravy změny struktury tříd.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/index.php

    r69 r74  
    22
    33include('Include.php');
     4if(array_key_exists('argv', $_SERVER))
     5  $_GET = array_merge($_GET, ParseCommandLineArgs($_SERVER['argv']));
    46
    57// SQL injection hack protection
     
    1820$System->AddModule(new User($System));
    1921if(isset($_SERVER['REMOTE_ADDR'])) $System->Modules['User']->Check();
    20   else $System->Modules['User']->User['Id'] = 0;
    21 
     22  else $System->Modules['User']->User['Id'] = $Config['Web']['UserConsoleId'];
    2223
    2324if(array_key_exists('Module', $_GET)) $Module = $_GET['Module'];
Note: See TracChangeset for help on using the changeset viewer.