diff --git a/add_domain_modal.php b/add_domain_modal.php
index e7b3dd52..4ce360b3 100644
--- a/add_domain_modal.php
+++ b/add_domain_modal.php
@@ -31,7 +31,7 @@
- Vendor -
- Location -
diff --git a/client_assets.php b/client_assets.php
index e772593c..c8649579 100644
--- a/client_assets.php
+++ b/client_assets.php
@@ -97,6 +97,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()"));
$asset_purchase_date = $row['asset_purchase_date'];
$asset_warranty_expire = $row['asset_warranty_expire'];
$asset_notes = $row['asset_notes'];
+ $asset_created_at = $row['asset_created_at'];
$vendor_id = $row['vendor_id'];
$location_id = $row['location_id'];
$contact_id = $row['contact_id'];
diff --git a/client_networks.php b/client_networks.php
index b2e9c395..1ccaa0a6 100644
--- a/client_networks.php
+++ b/client_networks.php
@@ -89,6 +89,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()"));
$network = $row['network'];
$network_gateway = $row['network_gateway'];
$network_dhcp_range = $row['network_dhcp_range'];
+ $network_created_at = $row['network_created_at'];
$location_id = $row['location_id'];
?>
diff --git a/domains.php b/domains.php
index 7878a34a..bbe8ed55 100644
--- a/domains.php
+++ b/domains.php
@@ -87,6 +87,7 @@ $total_pages = ceil($total_found_rows / 10);
$domain_registrar = $row['domain_registrar'];
$domain_webhost = $row['domain_webhost'];
$domain_expire = $row['domain_expire'];
+ $domain_created_at = $row['domain_created_at'];
$client_id = $row['client_id'];
$client_name = $row['client_name'];
diff --git a/edit_asset_modal.php b/edit_asset_modal.php
index 0a43fc90..d02833fb 100644
--- a/edit_asset_modal.php
+++ b/edit_asset_modal.php
@@ -140,7 +140,7 @@
'$asset_created_at' OR contact_archived_at IS NULL) AND client_id = $client_id ORDER BY contact_name ASC");
while($row = mysqli_fetch_array($sql_contacts)){
$contact_id_select = $row['contact_id'];
$contact_name_select = $row['contact_name'];
@@ -164,7 +164,7 @@
'$asset_created_at' OR network_archived_at IS NULL) AND client_id = $client_id ORDER BY network_name ASC");
while($row = mysqli_fetch_array($sql_networks)){
$network_id_select = $row['network_id'];
$network_name_select = $row['network_name'];
@@ -214,7 +214,7 @@
'$asset_created_at' OR vendor_archived_at IS NULL) AND client_id = $client_id ORDER BY vendor_name ASC");
while($row = mysqli_fetch_array($sql_vendors)){
$vendor_id_select = $row['vendor_id'];
$vendor_name_select = $row['vendor_name'];
diff --git a/edit_network_modal.php b/edit_network_modal.php
index a31857df..918f7261 100644
--- a/edit_network_modal.php
+++ b/edit_network_modal.php
@@ -71,7 +71,7 @@
'$network_created_at' OR location_archived_at IS NULL) AND client_id = $client_id ORDER BY location_name ASC");
while($row = mysqli_fetch_array($sql_locations)){
$location_id_select = $row['location_id'];
$location_name_select = $row['location_name'];