Fix the provision path.

This commit is contained in:
markjcrane
2015-11-27 14:10:49 -07:00
parent 744ba6f9a4
commit 03f9843cb9

View File

@@ -801,6 +801,13 @@ include "root.php";
$tmp_array = '';
$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
$sql = "select * from v_devices ";
//$sql .= "where domain_uuid = '".$this->domain_uuid."' ";