Ignore:
Timestamp:
Jan 13, 2015, 12:18:19 AM (10 years ago)
Author:
chronos
Message:
  • Added: Scheduler available action table. Modules can register actions as read only items in table.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/FinanceBankAPI/FinanceBankAPI.php

    r729 r730  
    8888        {
    8989                $Output = '';
    90                 $DbResult = $this->Database->select('FinanceBankAccount', 'Id', '(AutoImport=1) AND ((TimeEnd IS NULL) OR (TimeEnd > NOW()))');
     90                $DbResult = $this->Database->select('FinanceBankAccount', 'Id', '(`AutoImport`=1) AND ((`TimeEnd` IS NULL) OR (`TimeEnd` > NOW()))');
    9191                while($DbRow = $DbResult->fetch_assoc())
    9292                {                       
     93                        echo($DbRow['Comment']."\n");
    9394                        $Page = new PageImportAPI($this->System);
    9495                        $Output .= $Page->Show();
Note: See TracChangeset for help on using the changeset viewer.