Test REGEXP is valid before apply in MySQL
This commit is contained in:
parent
f9d5767027
commit
b384e97da5
|
@ -253,7 +253,12 @@ if ($get_graphs) {
|
||||||
|
|
||||||
case 'dynamic_graph':
|
case 'dynamic_graph':
|
||||||
if ($value['agent'] != '') {
|
if ($value['agent'] != '') {
|
||||||
|
if (@preg_match($value['agent'], '') !== false) {
|
||||||
$alias = " AND alias REGEXP '".$value['agent']."'";
|
$alias = " AND alias REGEXP '".$value['agent']."'";
|
||||||
|
} else {
|
||||||
|
// Not a valid REGEXP.
|
||||||
|
$alias = " AND alias LIKE '".$value['agent']."'";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($value['id_group'] === '0') {
|
if ($value['id_group'] === '0') {
|
||||||
|
@ -277,7 +282,11 @@ if ($get_graphs) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($value['module'] != '') {
|
if ($value['module'] != '') {
|
||||||
|
if (@preg_match($value['module'], '') !== false) {
|
||||||
$module_name = " AND nombre REGEXP '".$value['module']."'";
|
$module_name = " AND nombre REGEXP '".$value['module']."'";
|
||||||
|
} else {
|
||||||
|
$module_name = " AND nombre LIKE '".$value['module']."'";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$id_agent_module = db_get_all_rows_sql(
|
$id_agent_module = db_get_all_rows_sql(
|
||||||
|
|
Loading…
Reference in New Issue