mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
removed debug + simplified code
This commit is contained in:
@@ -23,15 +23,8 @@ $template_id = $_POST['template_id'];
|
||||
if (is_numeric($alert_id) && $alert_id > 0) {
|
||||
$rule = dbFetchRow('SELECT * FROM `alert_rules` WHERE `id` = ? LIMIT 1', array($alert_id));
|
||||
} elseif (is_numeric($template_id) && $template_id >= 0) {
|
||||
$x=0;
|
||||
foreach (get_rules_from_json() as $tmp_rule) {
|
||||
if ($x == $template_id) {
|
||||
$rule = $tmp_rule;
|
||||
break;
|
||||
}
|
||||
$x++;
|
||||
}
|
||||
logfile(json_encode($rule));
|
||||
$tmp_rules = get_rules_from_json();
|
||||
$rule = $tmp_rules[$template_id];
|
||||
}
|
||||
if (is_array($rule)) {
|
||||
$rule_split = preg_split('/([a-zA-Z0-9_\-\.\=\%\<\>\ \"\'\!\~\(\)\*\/\@\|]+[&&|\|\|]{2})/', $rule['rule'], -1, (PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY));
|
||||
|
Reference in New Issue
Block a user