fix bug when deleting custom units and changed default value for byte multiplier
This commit is contained in:
parent
7c952eaaa8
commit
3f26f2ef6f
|
@ -1361,7 +1361,7 @@ $row++;
|
||||||
$options_data_multiplier[1] = __('Use always 1000');
|
$options_data_multiplier[1] = __('Use always 1000');
|
||||||
$options_data_multiplier[2] = __('Use always 1024');
|
$options_data_multiplier[2] = __('Use always 1024');
|
||||||
|
|
||||||
$table_other->data[$row][1] = html_print_select($options_data_multiplier, 'use_data_multiplier', $config['use_data_multiplier'], '', '', 0, true, false, false);
|
$table_other->data[$row][1] = html_print_select($options_data_multiplier, 'use_data_multiplier', $config['use_data_multiplier'], '', '', 1, true, false, false);
|
||||||
|
|
||||||
|
|
||||||
echo '<fieldset>';
|
echo '<fieldset>';
|
||||||
|
|
|
@ -5543,7 +5543,7 @@ function delete_custom_module_unit($value)
|
||||||
|
|
||||||
$custom_units = get_custom_module_units();
|
$custom_units = get_custom_module_units();
|
||||||
|
|
||||||
unset($custom_units[$value]);
|
unset($custom_units[io_safe_output($value)]);
|
||||||
|
|
||||||
$new_conf = json_encode($custom_units);
|
$new_conf = json_encode($custom_units);
|
||||||
$return = config_update_value(
|
$return = config_update_value(
|
||||||
|
@ -5574,7 +5574,7 @@ function get_data_multiplier($unit)
|
||||||
|
|
||||||
switch ($config['use_data_multiplier']) {
|
switch ($config['use_data_multiplier']) {
|
||||||
case 0:
|
case 0:
|
||||||
if (strpos($unit, 'yte') !== false) {
|
if (strpos(strtolower($unit), 'yte') !== false) {
|
||||||
$multiplier = 1024;
|
$multiplier = 1024;
|
||||||
} else {
|
} else {
|
||||||
$multiplier = 1000;
|
$multiplier = 1000;
|
||||||
|
|
|
@ -2831,7 +2831,7 @@ function config_process_config()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($config['use_data_multiplier'])) {
|
if (!isset($config['use_data_multiplier'])) {
|
||||||
config_update_value('use_data_multiplier', ';');
|
config_update_value('use_data_multiplier', '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($config['command_snapshot'])) {
|
if (!isset($config['command_snapshot'])) {
|
||||||
|
|
|
@ -712,7 +712,7 @@ function post_process_select_init_unit(name, selected) {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (select_or_text) {
|
if (select_or_text) {
|
||||||
$("#" + name + "_select option[value=" + selected + "]").attr(
|
$("#" + name + "_select option[value='" + selected + "']").attr(
|
||||||
"selected",
|
"selected",
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
@ -728,7 +728,7 @@ function post_process_select_init_unit(name, selected) {
|
||||||
|
|
||||||
$("#" + name + "_select").change(function() {
|
$("#" + name + "_select").change(function() {
|
||||||
var value = $("#" + name + "_select").val();
|
var value = $("#" + name + "_select").val();
|
||||||
$("#" + name + "_select option[value=" + value + "]").attr(
|
$("#" + name + "_select option[value='" + value + "']").attr(
|
||||||
"selected",
|
"selected",
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue