Update changelog and add sample for bug fix #222

This commit is contained in:
Ivan Lanin 2014-05-05 09:08:15 +07:00
parent d11376e387
commit 6dd51c54ea
2 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,7 @@ This release changed PHPWord license from LGPL 2.1 to LGPL 3.
### Bugfixes
- ...
- Header: All images added to the second header were assigned to the first header - @basjan GH-222
### Deprecated

View File

@ -25,6 +25,7 @@ $table->addCell(4500)->addImage(
// Add header for all other pages
$subsequent = $section->addHeader();
$subsequent->addText("Subsequent pages in Section 1 will Have this!");
$subsequent->addImage('resources/_mars.jpg', array('width' => 80, 'height' => 80));
// Add footer
$footer = $section->addFooter();