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/Finance/Bill.php

    r873 r874  
    88  function GenerateHTML()
    99  {
    10     return ('');
     10    return '';
    1111  }
    1212
     
    2929    $Output = shell_exec('echo "'.addslashes($Encoding->FromUTF8($HtmlCode)).
    3030      '"|htmldoc --no-numbered --webpage --no-embedfonts --charset 8859-2 -t pdf -');
    31     return ($Output);
     31    return $Output;
    3232  }
    3333}
     
    4747    if ($Subject['Account'] != '') $Output .= 'Účet: '.$Subject['Account'].'<br>';
    4848    if ($Subject['PayVAT'] != '') $Output .= 'Plátce DPH: '.$BooleanText[$Subject['PayVAT']].'<br>';
    49     return ($Output);
     49    return $Output;
    5050  }
    5151
     
    146146      '</table>';
    147147
    148     return ($Output);
     148    return $Output;
    149149  }
    150150}
     
    215215      '<tr><td>&nbsp;</td><td><br><br>'.$Desc['Signature'].':</td></tr>';
    216216    $Output .= '</table>';
    217     return ($Output);
     217    return $Output;
    218218  }
    219219}
Note: See TracChangeset for help on using the changeset viewer.