Skip to content

Commit 9f97b7d

Browse files
committed
Reverse params to please PHP 7.4
1 parent 1c2a7fe commit 9f97b7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/table.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ class Table
539539

540540
foreach($ary as $key=>$val)
541541
{
542-
if ($key or implode($val,'')>'') #skip blank first dummy row
542+
if ($key or implode('',$val)>'') #skip blank first dummy row
543543
## Process a single row
544544
$this->table_row($row++, $key, $val, $class);
545545
}

0 commit comments

Comments
 (0)