more db* make diskio_ a bit more generic

git-svn-id: http://www.observium.org/svn/observer/trunk@2305 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2011-05-13 12:57:11 +00:00
parent 993b5c5ead
commit 8576fdd5ad
6 changed files with 29 additions and 50 deletions
+2 -3
View File
@@ -4,8 +4,7 @@
$device = device_by_id_cache($id);
$query = mysql_query("SELECT * FROM `ports` WHERE `device_id` = '".$id."'");
while ($int = mysql_fetch_assoc($query))
foreach (dbFetchRows("SELECT * FROM `ports` WHERE `device_id` = ?", array($id)) as $int)
{
$ignore = 0;
if (is_array($config['device_traffic_iftype']))
@@ -47,4 +46,4 @@ $colour_area_out = "C3D9FF";
include("includes/graphs/generic_multi_bits.inc.php");
?>
?>