Fixed undefine vendor_id and asset_id under tickets

This commit is contained in:
johnnyq
2023-02-24 21:30:30 -05:00
parent daa0449a1c
commit 29db5a19c9
11 changed files with 13 additions and 430 deletions

View File

@@ -1,12 +1,10 @@
<?php
require_once("inc_all_client.php");
// Default Column Sortby Filter
$sb = "login_name";
$o = "ASC";
if (!empty($_GET['sb'])) {
$sb = sanitizeInput($_GET['sb']);
} else {
$sb = "login_name";
}
require_once("inc_all_client.php");
//Rebuild URL
$url_query_strings_sb = http_build_query(array_merge($_GET, array('sb' => $sb, 'o' => $o)));