Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ec4161b + e5ce13f commit c9c09d6Copy full SHA for c9c09d6
src/Plugins/Export/Helpers/Pdf.php
@@ -595,7 +595,7 @@ public function getTableDef(
595
foreach ($data as $col => $txt) {
596
$this->page = $currpage;
597
$this->setXY($l, $h);
598
- if ($this->tablewidths[$col] > 0) {
+ if (isset($this->tablewidths[$col]) && $this->tablewidths[$col] > 0) {
599
$this->MultiCell(
600
$this->tablewidths[$col],
601
// phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
0 commit comments