Ignore:
Timestamp:
Aug 20, 2013, 10:48:15 PM (11 years ago)
Author:
chronos
Message:
  • Fixed: Creation of new export failed with error.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Export/Page.php

    r560 r565  
    104104                                        WriteLog('Vytvořen nový export <a href="'.$this->System->Link('/export/?Action=View&amp;ExportId='.$ExportId).'">'.$ExportId.'</a>.', LOG_TYPE_EXPORT);
    105105                                        $_GET['Filter'] = 'my';
    106                                         ExportList();
     106                                        $this->ExportList();
    107107                                } else $Output = ShowMessage('Nemůžete vytvářet další export. Max. počet na uživatele je '.$this->System->Config['MaxExportPerUser'].'.', MESSAGE_CRITICAL);
    108108                        } else $Output = ShowMessage('Chybí údaje formuláře.', MESSAGE_CRITICAL);
     
    129129                                $_GET['Filter'] = 'my';
    130130                                WriteLog('Smazán export '.$_GET['ExportId'], LOG_TYPE_EXPORT);
    131                                 $Output .= ExportList();
     131                                $Output .= $this->ExportList();
    132132                        } else $Output = ShowMessage('Export nenalezen.', MESSAGE_CRITICAL);
    133133                } else $Output = ShowMessage('Nemáte oprávnění.', MESSAGE_CRITICAL);
     
    592592        function ExportViewStat()
    593593        {
    594                 global $Config;
    595        
    596594                $Export = new Export($this->System);
    597595                $Export->Id = $_GET['ExportId'];
     
    617615                                                '(SELECT COUNT(DISTINCT(`Entry`)) FROM ('.
    618616                                                ' SELECT `T`.* FROM `'.$DbRow['TablePrefix'].'` AS `T`'.
    619                                                 ' WHERE (`Language` = '.$Config['OriginalLanguage'].') AND (`VersionStart` <= '.$Export->ClientVersion['BuildNumber'].') AND (`VersionEnd` >= '.$Export->ClientVersion['BuildNumber'].')'.
     617                                                ' WHERE (`Language` = '.$this->System->Config['OriginalLanguage'].') AND (`VersionStart` <= '.$Export->ClientVersion['BuildNumber'].') AND (`VersionEnd` >= '.$Export->ClientVersion['BuildNumber'].')'.
    620618                                                ') AS `C2`) AS `Total`, "'.$DbRow['Name'].'" AS `Name`';
    621619                        }
     
    626624                        $PageList = GetPageList($DbRow[0]);
    627625                        $Output = '<h3>Statistika dokončení vybraných skupin</h3>'.
    628                                         $PageList['Output'];
     626                                $PageList['Output'];
    629627       
    630628                        $Output .= '<table class="BaseTable">';
    631629                        $TableColumns = array(
    632                                         array('Name' => 'Name', 'Title' => 'Jméno'),
    633                                         array('Name' => 'Translated', 'Title' => 'Přeložených'),
    634                                         array('Name' => 'Total', 'Title' => 'Anglických'),
    635                                         array('Name' => 'Percent', 'Title' => 'Procenta'),
     630                                array('Name' => 'Name', 'Title' => 'Jméno'),
     631                                array('Name' => 'Translated', 'Title' => 'Přeložených'),
     632                                array('Name' => 'Total', 'Title' => 'Anglických'),
     633                                array('Name' => 'Percent', 'Title' => 'Procenta'),
    636634                        );
    637635       
     
    704702  }
    705703}
    706 
Note: See TracChangeset for help on using the changeset viewer.