Ignore:
Timestamp:
Apr 6, 2020, 11:56:19 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Do not use parenthesis around returned value.
File:
1 edited

Legend:

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

    r873 r874  
    7676    $DbRow = $DbResult->fetch_row();
    7777    $Output = 'Nezpárovaných plateb: '.$DbRow['0'].'<br/>';
    78     return ($Output);
     78    return $Output;
    7979  }
    8080
     
    9494      'presetBankAccount' => $Item['BankAccount'],
    9595      'presetGroup' => $FinanceGroup['Id']);
    96     return ($Preset);
     96    return $Preset;
    9797  }
    9898}
     
    112112      $Output .= $Page->Import($DbRow['Id']);
    113113    }
    114     return ($Output);
     114    return $Output;
    115115  }
    116116}
Note: See TracChangeset for help on using the changeset viewer.