Changeset 836


Ignore:
Timestamp:
Sep 17, 2016, 6:45:03 PM (8 years ago)
Author:
chronos
Message:
  • Fixed: Suppress error for download of data from remote location.
File:
1 edited

Legend:

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

    r805 r836  
    3131    $RequestURL = '/ib_api/rest/periods/'.$this->Token.'/'.
    3232      date('Y-m-d', $TimeFrom).'/'.date('Y-m-d', $TimeTo).'/transactions.'.$this->Format;
    33     $Response = file_get_contents('https://www.fio.cz'.$RequestURL);
     33    $Response = '';
     34    $Response = @file_get_contents('https://www.fio.cz'.$RequestURL);
    3435    if($Response == FALSE)
    3536    {
     
    7778        array_shift($Response); // Remove empty line
    7879
    79         if((count($Response) == 0) or 
     80        if((count($Response) == 0) or
    8081          ($Response[0] != 'ID pohybu;Datum;Objem;Měna;Protiúčet;Název protiúčtu;Kód banky;Název banky;KS;VS;SS;Uživatelská identifikace;Zpráva pro příjemce;Typ;Provedl;Upřesnění;Komentář;BIC;ID pokynu')
    8182          ) throw new Exception('Unsupported CSV header');
Note: See TracChangeset for help on using the changeset viewer.