1 2 3 4 5 6 7 8 9 10 11
|
// Show the [home] button.
echo ($current_action=='site' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'site' ? 'active_back' : 'back' , '">
<a href="HTTP://">SITE</a>
</td>' , $current_action == 'site' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// Show the [forum] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">Forum</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '"> </td>' : ''; |
Partager