Changeset 51


Ignore:
Timestamp:
Jun 20, 2009, 4:51:12 PM (15 years ago)
Author:
george
Message:
  • Opraveno: Při generování systémových úloh je nutno nastavovat správné id uživatele.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/shell.php

    r42 r51  
    2525  function Show()
    2626  {
     27    global $System;
     28   
    2729    $Output = '';
    2830    if(count($_SERVER['argv']) > 1)
     
    9698        {
    9799          $Server = new Server($this->Database, $DbRow['Id']);
     100          $System->Modules['User']->User['Id'] = $Server->Server['User'];
    98101          $Server->Start();
    99102        }
     
    102105      {
    103106        $Backup = new Backup($this->Database, 0);
    104         $DbResult = $this->Database->select('Server', 'Id');
     107        $DbResult = $this->Database->select('Server', 'Id, User');
    105108        while($DbRow = $DbResult->fetch_assoc())
    106109        {
     110          $System->Modules['User']->User['Id'] = $DbRow['User'];
    107111          $Backup->Create($DbRow['Id']);
    108112        }
Note: See TracChangeset for help on using the changeset viewer.