
Originally Posted by
aled
I've modified the file table_block.php on line 77 and it seems to work but please make some test.
replace line 77 in admin\includes\classes\table_block.php
$tableBox_string .= '>' . $contents[$i]['text'] . '</td>' . "\n";
with:
if(isset($contents[$i]['text'])){
$tableBox_string .= '>' . $contents[$i]['text'] . '</td>' . "\n";
} else {
$tableBox_string .= '>' . $contents['text'] . '</td>' . "\n";
}
I'm not sure this modify not create some other bugs, but for the moment is the best I can do! If is there some guru who want help us, we are waiting for Him!!!
Bye