Changeset 265 for trunk/download.php


Ignore:
Timestamp:
Jul 27, 2009, 2:25:44 PM (15 years ago)
Author:
maron
Message:

Oprava názvu složky uvnitř MPQ souboru, změna generování logu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/download.php

    r260 r265  
    2222        $Percent = substr($Percent, 0, 5);
    2323       
    24         $result = false;
    25         foreach($Group['Items'] as $Column)     if($Column['AddonFileName'] != '') $result = true;     
    26        
    2724        if (($TableID == 14) or ($TableID == 15)) $result = true;       
    2825       
    29         if ($result)
    3026                return ($Group['Name'].': '.$NumberTranslate.'/'.$NumberAJ.'  '.$Percent.'%
    3127        ');
     
    8884
    8985if (Licence(LICENCE_USER)) {   
    90   $ID = $Database->SQLCommand('SELECT * FROM tasks WHERE User = '.$_SESSION['UserID']);
     86  $ID = $Database->SQLCommand('SELECT * FROM tasks WHERE User = '.$_SESSION['UserID'].' ORDER BY Date DESC LIMIT 10');
    9187  if (mysql_num_rows($ID) > 0)
    9288  {
    9389    $Database->SQLCommand('UPDATE tasks SET Downloaded = 1 WHERE Active = 0 AND User = '.$_SESSION['UserID']);
    94     echo ('<h3>Seznam zadaných úkolů</h3> <table  class="BaseTable"><tr><th>Datum</th><th>Vygenerováno</th><th>Staženo</th><th>Soubor</th></tr>');
     90    echo ('<h3>Seznam zadaných úkolů</h3> <table  class="BaseTable"><tr><th>Datum</th><th>Vygenerováno</th><th>Staženo</th><th>Soubor</th><th>Nastavení exportu</th></tr>');
    9591    while($Line = mysql_fetch_assoc($ID))
    9692    {
     
    108104        '<td>'.$Active.'</td>'.
    109105        '<td>'.$Downloaded.'</td>'.
    110         '<td>'.$Download.'</td>');
     106        '<td>'.$Download.'</td>'.
     107        '<td><textarea>'.$Line['ExportSetting'].'</textarea></td>');
    111108            echo('</tr>');
    112109    }
Note: See TracChangeset for help on using the changeset viewer.