Code Duplication    Length = 9-9 lines in 2 locations

blocks/instr_lastpage.php 1 location

@@ 64-72 (lines=9) @@
61
}
62
63
// Редактирование последних страниц
64
function b_instr_lastpage_edit($options = [])
65
{
66
    $form = '';
67
    $form .= _MB_INSTR_DISPLAYPAGESC . ' <input name="options[0]" size="5" maxlength="255" value="' . $options[0] . '" type="text" /><br>' . "\n";
68
    $form .= _MB_INSTR_NUMCHARSC . ' <input name="options[1]" size="5" maxlength="255" value="' . $options[1] . '" type="text" /><br>' . "\n";
69
70
    // Возвращаем форму
71
    return $form;
72
}
73

blocks/instr_lastinstr.php 1 location

@@ 62-70 (lines=9) @@
59
}
60
61
// Редактирование последних инструкций
62
function b_instr_lastinstr_edit($options = [])
63
{
64
    $form = '';
65
    $form .= _MB_INSTR_DISPLAYINSTRC . ' <input name="options[0]" size="5" maxlength="255" value="' . $options[0] . '" type="text" /><br>' . "\n";
66
    $form .= _MB_INSTR_NUMCHARSC . ' <input name="options[1]" size="5" maxlength="255" value="' . $options[1] . '" type="text" /><br>' . "\n";
67
68
    // Возвращаем форму
69
    return $form;
70
}
71