Satinize input
这个提交包含在:
父节点
1d9685a1b8
当前提交
8e894ebcbc
共有 1 个文件被更改,包括 2 次插入 和 0 次删除
|
|
@ -3433,12 +3433,14 @@ class Logbook_model extends CI_Model
|
|||
|
||||
if (isset($record['ant_az'])) {
|
||||
$input_ant_az = filter_var($record['ant_az'], FILTER_VALIDATE_FLOAT);
|
||||
$input_ant_az = fmod($input_ant_az, 360);
|
||||
} else {
|
||||
$input_ant_az = NULL;
|
||||
}
|
||||
|
||||
if (isset($record['ant_el'])) {
|
||||
$input_ant_el = filter_var($record['ant_el'], FILTER_VALIDATE_FLOAT);
|
||||
$input_ant_el = fmod($input_ant_el, 90);
|
||||
} else {
|
||||
$input_ant_el = NULL;
|
||||
}
|
||||
|
|
|
|||
正在加载…
在新工单中引用