Bruger man eget tema i SMF - Simple Machines Forum og skal installere et mod, så er det vigtigt at lave en diff eller kompare (indbygget i KDE) på index.template.php mellem eget tema og defaulttemaet.
Eksempel.
Ved installationen af DonationCoder.com SMF Search Enhancement Mod bliver følgende vigtige ændring foretaget i index.template.php:
Code: [Select]
function DropDownQuickSearch ()
{
global $context, $txt;
// in order!!
$Selections = array(
'entireforum' => $txt['search_entireforum'],
'thisbrd' => $txt['search_thisbrd'],
'thistopic' => $txt['search_thistopic'],
'members' => $txt['search_members'],
// Google site search
'entiresite' => $txt['search_entiresite']
);
$default = 'entireforum';
if (empty($context['current_topic']))
unset ($Selections['thistopic']);
if (empty($context['current_board']))
unset ($Selections['thisbrd']);
$str = '
<select name="search_selection">';
foreach ($Selections as $selection => $title)
$str .= '
<option value="' . $selection . '"' . ($selection == $default ? ' selected="selected"' : '') . '>' . $title . ' </option>';
$str .= '
</select> ';
return $str;
}
Comments