I want to install this Mod in my board but I didn't find this little code parts in my 2 files, I hope u can help me with this and tell me where I can put that code.
I attach here my files.
Code: Alles auswählen
#
#-----[ OPEN ]---------------------------------------------------
#
admin/admin_board.php
#
#-----[ FIND ]---------------------------------------------------
#
$confirm_no = (!$new['enable_confirm']) ? 'checked="checked"' : '';
#
#-----[ AFTER, ADD ]---------------------------------------------
#
// Start Autolinks For phpBB Mod
$autolink_first_yes = ( $new['autolink_first'] ) ? "checked=\"checked\"" : "";
$autolink_first_no = ( !$new['autolink_first'] ) ? "checked=\"checked\"" : "";
// End Autolinks For phpBB Mod
#
#-----[ FIND ]---------------------------------------------------
#
"L_VISUAL_CONFIRM_EXPLAIN" => $lang['Visual_confirm_explain'],
#
#-----[ AFTER, ADD ]---------------------------------------------
#
// Start Autolinks For phpBB Mod
"L_AUTOLINK_FIRST" => $lang['Autolink_first'],
// End Autolinks For phpBB Mod
#
#-----[ FIND ]---------------------------------------------------
#
"ACTIVATION_NONE_CHECKED" => $activation_none,
#
#-----[ AFTER, ADD ]---------------------------------------------
#
// Start Autolinks For phpBB Mod
"AUTOLINK_FIRST_YES" => $autolink_first_yes,
"AUTOLINK_FIRST_NO" => $autolink_first_no,
// End Autolinks For phpBB ModCode: Alles auswählen
#
#-----[ OPEN ]---------------------------------------------------
#
templates/subSilver/admin/board_config_body.tpl
#
#-----[ FIND ]---------------------------------------------------
#
<td class="row2"><input type="radio" name="enable_confirm" value="1" {CONFIRM_ENABLE} />{L_YES} <input type="radio" name="enable_confirm" value="0" {CONFIRM_DISABLE} />{L_NO}</td>
</tr>
#
#-----[ AFTER, ADD ]---------------------------------------------
#
<tr>
<td class="row1">{L_AUTOLINK_FIRST}</td>
<td class="row2"><input type="radio" name="autolink_first" value="1" {AUTOLINK_FIRST_YES} />{L_YES} <input type="radio" name="autolink_first" value="0" {AUTOLINK_FIRST_NO} />{L_NO}</td>
</tr>