Skip to content

Commit

Permalink
Fix #016699: PDF tables do not render under PHP5.3
Browse files Browse the repository at this point in the history
Pass parameter by ref to avoid issue with call_user_func_array passing it by value despite function signature.
  • Loading branch information
andrerom committed Aug 10, 2010
1 parent 377213e commit fd822ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Changes from 4.4.0alpha5 to 4.4.0alpha6
- Fixed bug #016534: Subtree notification subscription can't be removed in admin2
- Fixed bug #016569: After Content Read workflow trigger missing from Operation Defination
- Fixed bug #016663: ezHTTPTool::sendHTTPRequest() fails on array POST parameters
- Fixed bug #016699: PDF tables do not render under PHP5.3
- Fixed bug #016738: LDAP login with method "GetGroupsTree" fails because of missing permissions of login script
- Fixed bug #016740: 4.3 upgrade sql invalid for postgres
- Fixed bug #016821: Show meta fields when they are required but not filled in
Expand Down
2 changes: 1 addition & 1 deletion lib/ezpdf/classes/class.ezpdftable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2422,7 +2422,7 @@ function callTable( $params, $text )
}
$columnText .= $text[$offSet];
}
$this->addDocSpecFunction( 'ezTable', array( $tableData, '', '', array_merge( array( 'cellData' => $cellData,
$this->addDocSpecFunction( 'ezTable', array( &$tableData, '', '', array_merge( array( 'cellData' => $cellData,
'showLines' => $showLines ),
$params ) ) );
}
Expand Down

0 comments on commit fd822ae

Please sign in to comment.