Take prediction_module param when create module and init module - #698

This commit is contained in:
enriquecd 2017-06-02 09:54:33 +02:00
parent 6ad0dde2b7
commit 13376bce42
1 changed files with 6 additions and 2 deletions

View File

@ -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");