From a896bb33746311ec641dfa332bb64c75452e44e1 Mon Sep 17 00:00:00 2001 From: Adam Amstrong Date: Mon, 16 May 2011 09:39:28 +0000 Subject: [PATCH] array>row git-svn-id: http://www.observium.org/svn/observer/trunk@2330 61d68cd4-352d-0410-923a-c4978735b2b8 --- html/pages/routing/ospf.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/pages/routing/ospf.inc.php b/html/pages/routing/ospf.inc.php index be1ae23943..c4ded7eda9 100644 --- a/html/pages/routing/ospf.inc.php +++ b/html/pages/routing/ospf.inc.php @@ -25,7 +25,7 @@ while ($instance = mysql_fetch_assoc($query)) $ip_query .= "(A.ipv4_address = ? AND I.interface_id = A.interface_id)"; $ip_query .= " AND I.device_id = ?"; - $ipv4_host = dbFetchArray($ip_query, array($peer['bgpPeerIdentifier'], $device['device_id'])); + $ipv4_host = dbFetchRow($ip_query, array($peer['bgpPeerIdentifier'], $device['device_id'])); if ($instance['ospfAdminStat'] == "enabled") { $enabled = 'enabled'; } else { $enabled = 'disabled'; } if ($instance['ospfAreaBdrRtrStatus'] == "true") { $abr = 'yes'; } else { $abr = 'no'; }