Fix the provision path.
This commit is contained in:
parent
08bb5d35b1
commit
e49ba553b6
|
|
@ -801,6 +801,13 @@ include "root.php";
|
||||||
$tmp_array = '';
|
$tmp_array = '';
|
||||||
$i = 0;
|
$i = 0;
|
||||||
|
|
||||||
|
//build the provision array
|
||||||
|
foreach($_SESSION['provision'] as $key=>$val) {
|
||||||
|
if (strlen($val['var']) > 0) { $value = $val['var']; }
|
||||||
|
if (strlen($val['text']) > 0) { $value = $val['text']; }
|
||||||
|
$provision[$key] = $value;
|
||||||
|
}
|
||||||
|
|
||||||
//get the devices
|
//get the devices
|
||||||
$sql = "select * from v_devices ";
|
$sql = "select * from v_devices ";
|
||||||
//$sql .= "where domain_uuid = '".$this->domain_uuid."' ";
|
//$sql .= "where domain_uuid = '".$this->domain_uuid."' ";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue