|
xatnep
|
 |
« Reply #1 on: August 17, 2010, 09:59:06 am » |
|
I use instruction here: my smf version 1.1.11
./Themes/default/index.template.php Find: [Select]
$current_action = 'admin'; if (in_array($context['current_action'], array(
Add After: [Select]
'gallery',
Find: [Select]
// the [member] list button if ($context['allow_memberlist']) echo ($current_action == 'mlist' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , ' <td valign="top" class="maintab_' , $current_action == 'mlist' ? 'active_back' : 'back' , '"> <a href="', $scripturl, '?action=mlist">' , $txt[331] , '</a> </td>' , $current_action == 'mlist' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
Add After: [Select]
// the [SMF Gallery] button if ($context['allow_smfgallery_view']) echo ($current_action == 'gallery' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , ' <td valign="top" class="maintab_' , $current_action == 'gallery' ? 'active_back' : 'back' , '"> <a href="', $scripturl, '?action=gallery">' , $txt['smfgallery_menu'] , '</a> </td>' , $current_action == 'gallery' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
|