Update edit_user_profile.php

This commit is contained in:
Roman Kelesidis 2024-02-23 16:36:57 +07:00
parent c358124b62
commit 89a21bc855

View File

@ -142,6 +142,10 @@ switch ($field)
}
}
$value = sprintf('%.0f', $value);
if (strlen($value) > 19)
{
$this->ajax_die($lang['WRONG_INPUT']);
}
$this->response['new_value'] = humn_size($value, null, null, ' ');
if (!$btu = get_bt_userdata($user_id))