Remove a PDO parameter that is not used.
This commit is contained in:
parent
799216bc65
commit
cc2220d787
|
|
@ -201,7 +201,6 @@ include "root.php";
|
||||||
$prep_statement_3 = $this->db->prepare(check_sql($sql));
|
$prep_statement_3 = $this->db->prepare(check_sql($sql));
|
||||||
if ($prep_statement_3) {
|
if ($prep_statement_3) {
|
||||||
$prep_statement_3->bindParam(':domain_uuid', $domain_uuid);
|
$prep_statement_3->bindParam(':domain_uuid', $domain_uuid);
|
||||||
$prep_statement_3->bindParam(':mac', $mac);
|
|
||||||
$prep_statement_3->execute();
|
$prep_statement_3->execute();
|
||||||
$row = $prep_statement_3->fetch();
|
$row = $prep_statement_3->fetch();
|
||||||
$device_label = $row["device_label"];
|
$device_label = $row["device_label"];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue