the Navigation Problem in IE in 1.2.7
There is some new Code in front.func - looks like that there are Canges for 'Hidden' and 'Logged In' Levels but they are not finished !?
The Problem comes from a wrong Calculation of <colspan=....
Code: Select all
$colspan = ($depth2 > 1) ? " colspan=\"".$depth2."\"" : "";
Code: Select all
foreach($struct as $key => $value) {
if($struct[$key]["acat_struct"] == $act_cat_id && $key && (!$struct[$key]["acat_hidden"] || isset($GLOBALS['LEVEL_KEY'][$key]))) {
$c++;
}
}
$c = (!$c) ? 1 : 0;
Code: Select all
if(is_array($data) && count($data)) {
$temp_tree = array_reverse($data, 1);
} else {
$temp_tree = false;
}
Code: Select all
//get depth of level
while ($start_level) {
$start_level = $struct[$start_level]["acat_struct"];
$level_depth++;