Nachdem die Installation recht mühelos klappte, fÃÆ'Ã,¤llt mir auf, dass beim Umschalten zwischen "ÃÆ'Ã...“bersicht" und "Forum" der Reiter nicht wechselt. Ein Schönheitsfehler, jetzt weiÃÆ'Ã...¸ ich auch, warum die index.template.php angemeckert wurde.
Seltsamerweise schaut sie aber gut aus, wenn ich mir sie anschaue. Kann mal jemand drüberschauen?
Da ist wohl ein kleiner Fehler drin ...
ersetze:
if($settings['TPortal_front_type']!='boardindex')
// Show the [forum] button.
echo ($current_action=='forum' || $context['browser']['is_ie4']) ? '<td class="maintab_active_first"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action=='forum' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=forum">FORUM</a>
</td>' , $current_action=='forum' ? '<td class="maintab_active_last"> </td>' : '';
durch
if($settings['TPortal_front_type']!='boardindex')
// Show the [forum] button.
echo ($current_action=='forum' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action=='forum' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=forum">FORUM</a>
</td>' , $current_action=='forum' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
Damit sollte es klappen.
Fel
Nö... Er schaltet erst um, wenn ich in ein Board reingehe. Wenn ich im Index des Forums bin, bleibt der Reiter "ÃÆ'Ã...“bersicht" aktiv ???
Hmmm .. ich glaub da fehlt noch was ...
if (in_array($context['current_action'], array('search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm','arcade')))
da müsste wohl noch 'forum' zugefügt werden.
Fel
Das war es. Nun funzt es prima, danke sehr! ;D