Skip to content

Commit

Permalink
fix issue from spipu#163
Browse files Browse the repository at this point in the history
  • Loading branch information
spipu authored and icebird93 committed Jun 18, 2018
1 parent 15108cc commit 1dcd2e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.
* add support 'start' attribute for ordered list
* fix a infinite loop case when reading a svg path
* fix issue from https://github.com/spipu/html2pdf/pull/177
* fix issue from https://github.com/spipu/html2pdf/pull/163

## [4.6.0] - 2016-03-30

Expand Down
2 changes: 1 addition & 1 deletion src/Html2Pdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -2604,7 +2604,7 @@ protected function _tag_open_PAGE($param)
$resetPageNumber = (isset($param['pagegroup']) && $param['pagegroup']=='new');

if (array_key_exists('hideheader', $param) && $param['hideheader']!='false' && !empty($param['hideheader'])) {
$this->_hideHeader = (array) array_merge($this->_hideHeader, split(',', $param['hideheader']));
$this->_hideHeader = (array) array_merge($this->_hideHeader, explode(',', $param['hideheader']));
}

$this->_maxH = 0;
Expand Down

0 comments on commit 1dcd2e3

Please sign in to comment.