Skip to content

Commit

Permalink
dont need to base64 it
Browse files Browse the repository at this point in the history
  • Loading branch information
amonger authored Jun 13, 2017
1 parent b8980c6 commit b8a2a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Implementation/WKHTMLToPDF.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public function fromURL($url)

public function fromHTML($html)
{
return $this->pdf->getOutputFromHtml(base64_decode($html));
return $this->pdf->getOutputFromHtml($html);
}
}

0 comments on commit b8a2a79

Please sign in to comment.