mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Remove legacy function calls (#12651)
* massive inlines * fix style and wtf * remove rrdtool.inc.php include * fix CommonFunctions namespace issues * looking for missing class space, fix undefined class issues * style fixes
This commit is contained in:
@@ -38,7 +38,7 @@ if (isset($options['h'])) {
|
||||
$where = "AND `device_id` = '" . $options['h'] . "'";
|
||||
$doing = $options['h'];
|
||||
} else {
|
||||
$where = "AND `hostname` LIKE '" . str_replace('*', '%', mres($options['h'])) . "'";
|
||||
$where = "AND `hostname` LIKE '" . str_replace('*', '%', $options['h']) . "'";
|
||||
$doing = $options['h'];
|
||||
}
|
||||
}//end if
|
||||
|
Reference in New Issue
Block a user