Changeset 64 for trunk/www/view/task.php


Ignore:
Timestamp:
Aug 5, 2009, 2:44:29 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Odkaz na inicializaci čisté databáze.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/view/task.php

    r59 r64  
    4848  function ErrorLog()
    4949  {
    50     $DbResult = $this->Database->select('Task', 'Title, Error', 'Id='.$_GET['Id']);
    51     $DbRow = $DbResult->fetch_assoc();
     50    $DbResult = $this->Database->select('Task', 'Title, Error, State', 'Id='.$_GET['Id']);
     51    $DbRow = $DbResult->fetch_assoc();   
    5252    $Output = '<h4>Chybový výpis úlohy: '.$DbRow['Title'].'</h4>';
    53     $Output .= '<pre>'.$DbRow['Error'].'</pre>';
     53    if($DbRow['State'] == 1) $Output .= '<pre>'.file_get_contents('../temp/wowhosting_script.sh.err').'</pre>';
     54      else $Output .= '<pre>'.$DbRow['Error'].'</pre>';
    5455    return($Output);
    5556  }
     
    5758  function StandardLog()
    5859  {
    59     $DbResult = $this->Database->select('Task', 'Title, Output', 'Id='.$_GET['Id']);
     60    $DbResult = $this->Database->select('Task', 'Title, Output, State', 'Id='.$_GET['Id']);
    6061    $DbRow = $DbResult->fetch_assoc();
    6162    $Output = '<h4>Výpis výstupu úlohy: '.$DbRow['Title'].'</h4>';
     63    if($DbRow['State'] == 1) $Output .= '<pre>'.file_get_contents('../temp/wowhosting_script.sh.log').'</pre>';
    6264    $Output .= '<pre>'.$DbRow['Output'].'</pre>';
    6365    return($Output);
Note: See TracChangeset for help on using the changeset viewer.