Welcome Guest, Not a member yet? Register   Sign In
Table.php set_empty() bug
#1

[eluser]geocine[/eluser]
line 263:

Code:
if ($cell === "")
{
  $out .= $this->empty_cells;
}

if ($cell === "")

to this:

Code:
if ($cell == "")
{
  $out .= $this->empty_cells;
}

I think cell is type string? isn't it. I am not a PHP expert but I guess this is correct.




Theme © iAndrew 2016 - Forum software by © MyBB