Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pr/9 #11

Merged
merged 7 commits into from
Jul 20, 2018
Merged

Pr/9 #11

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update function render for FPDF 1.81
fpdf Output prototype is as follow Output($dest='', $name='', $isUTF8=false)
  • Loading branch information
Ousret authored Jul 7, 2018
commit 9ceaf269cc6b8c30192fa5a1ef18d3f8e79ea50c
2 changes: 1 addition & 1 deletion src/InvoicePrinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public function render($name = '', $destination = '')
$this->AddPage();
$this->Body();
$this->AliasNbPages();
$this->Output($name, $destination);
return $this->Output($destination, $name);
}

public function Header()
Expand Down