Closed (fixed)
Project:
Tables Filter Module
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 Apr 2006 at 22:50 UTC
Updated:
7 Apr 2006 at 05:50 UTC
This code:
if (count($cells[$j]>$num_cols)) {
$num_cols=count($cells[$j]);
}
should be:
if (count($cells[$j])>$num_cols) {
$num_cols=count($cells[$j]);
}
(i.e. position of close-bracket in the condition)
Comments
Comment #1
webgeer commentedThank you very much.
That should be fixed now.