diff --git a/assets/admin.js b/assets/admin.js
index 591f0d6..f1b64b1 100644
--- a/assets/admin.js
+++ b/assets/admin.js
@@ -1119,7 +1119,7 @@ function sortTextVal(a, b) {
//------------------------------------------
function printDiv(div) {
var divContents = document.getElementById(div).innerHTML;
-var a = window.open('', '', 'height=500, width=500');
+var a = window.open('', '', '');
a.document.write('');
a.document.write('
');
a.document.write(divContents);
diff --git a/equipments_mass_update.php b/equipments_mass_update.php
index ab02e8d..7c78816 100644
--- a/equipments_mass_update.php
+++ b/equipments_mass_update.php
@@ -111,25 +111,17 @@ if ($update_allowed === 1){
$shipto = (isset($_POST['shipto']) ? $_POST['shipto'] : '');
$customer = (isset($_POST['soldto']) ? $_POST['soldto'] : $shipto);
- $order_header = '
-
-
- | '.$mass_update_order_ref.' |
- '.$mass_update_order_total.' |
- '.$mass_update_customer.' |
-
-
-
-
-
- | '.($_POST['order_ref'] ?? '').' |
- '.$total_rowID.' |
- '.$customer.' |
-
-
-
+ $order_header = '
+
+ | '.$tab1.' |
+
|---|
|
+
+
+ | '.$mass_update_order_ref.' | '.($_POST['order_ref'] ?? '').' |
+ | '.$mass_update_order_total.' | '.$total_rowID.' |
+ | '.$mass_update_customer.' | '.$customer.' |
+
';
-
}
}