Correct the SQL query to fetch data from the correct table

This commit is contained in:
Falk Stern
2015-10-08 14:25:11 +02:00
parent d5d7a000f7
commit 671457a453

View File

@@ -4,7 +4,7 @@ echo "<div style='margin: 0px;'><table border=0 cellspacing=0 cellpadding=5 widt
$i = '1';
$ap = dbFetchRow("SELECT * FROM `accesspoint` WHERE `device_id` = ? AND `accesspoint_id` = ? AND `deleted` = '0' ORDER BY `name`,`radio_number` ASC", array($device['device_id'], $vars['ap']));
$ap = dbFetchRow("SELECT * FROM `access_points` WHERE `device_id` = ? AND `accesspoint_id` = ? AND `deleted` = '0' ORDER BY `name`,`radio_number` ASC", array($device['device_id'], $vars['ap']));
echo "<div class=ifcell style='margin: 0px;'><table width=100% cellpadding=10 cellspacing=0>";