Take prediction_module param when create module and init module - #698
This commit is contained in:
parent
6ad0dde2b7
commit
13376bce42
|
@ -885,8 +885,12 @@ if ($update_module || $create_module) {
|
|||
// 1.23E-10 is 0.000000000123
|
||||
|
||||
$post_process = (string) get_parameter ('post_process', 0.0);
|
||||
//$prediction_module = 0;
|
||||
|
||||
if(get_parameter ('prediction_module')){
|
||||
$prediction_module = get_parameter ('prediction_module');
|
||||
}
|
||||
else{
|
||||
$prediction_module = 0;
|
||||
}
|
||||
$max_timeout = (int) get_parameter ('max_timeout');
|
||||
$max_retries = (int) get_parameter ('max_retries');
|
||||
$min = (int) get_parameter_post ("min");
|
||||
|
|
Loading…
Reference in New Issue