Hi Roxy,
I ran into this too, you must edit the themes.php file and place
$table = array();
on line 146 as follows:
$table = array(); <———The missing entry
$rows = ceil(count($theme_names) / 3);
for ( $row = 1; $row <= $rows; $row++ )
for ( $col = 1; $col <= 3; $col++ )
Line 150—–> $table[$row][$col] = array_shift($theme_names);