mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
fixed sql error
This commit is contained in:
parent
ea07bba78b
commit
fdca42eb24
@ -1159,7 +1159,13 @@ function alerts_create_alert_agent_module($id_agent_module, $id_alert_template,
|
||||
$values['id_alert_template'] = (int) $id_alert_template;
|
||||
$values['last_reference'] = time();
|
||||
|
||||
return @db_process_sql_insert('talert_template_modules', $values);
|
||||
$sql = sprintf(
|
||||
'INSERT IGNORE INTO talert_template_modules(%s) VALUES(%s)',
|
||||
implode(', ', array_keys($values)),
|
||||
implode(', ', array_values($values))
|
||||
);
|
||||
|
||||
return @db_process_sql($sql);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user