Code Duplication    Length = 3-3 lines in 2 locations

admin.settings.php 2 locations

@@ 428-430 (lines=3) @@
425
            </td><td>
426
            <div class="div_radio">
427
                <select id="personal_saltkey_security_level" name="personal_saltkey_security_level" class="text ui-widget-content" onchange="updateSetting($(this).attr(\'id\'));">';
428
foreach ($SETTINGS_EXT['pwComplexity'] as $complex) {
429
    echo '<option value="'.$complex[0].'"', isset($SETTINGS['personal_saltkey_security_level']) && $SETTINGS['personal_saltkey_security_level'] == $complex[0] ? ' selected="selected"' : '', '>'.$complex[1].'</option>';
430
}
431
echo '
432
                        </select>
433
            </div>
@@ 966-968 (lines=3) @@
963
                    </td>
964
                    <td>
965
                        <select id="offline_key_level" name="offline_key_level" class="text ui-widget-content" onchange="updateSetting($(this).attr(\'id\'));">';
966
foreach ($SETTINGS_EXT['pwComplexity'] as $complex) {
967
    echo '<option value="'.$complex[0].'"', isset($SETTINGS['offline_key_level']) && $SETTINGS['offline_key_level'] == $complex[0] ? ' selected="selected"' : '', '>'.$complex[1].'</option>';
968
}
969
echo '
970
                        </select>
971
                    </td>