Quote Originally Posted by aled View Post
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
well i tried doing it my way and it didnt work. so i tried things this way and i found a glitch. when i try to edit any of the boxes or modules anywhere in the admin section...the edit area on the right hand side of the screen goes away? its there till i push the edit button?

would this change of yours do that?