Fixed Side nav titles, Fixed ajax on bootstrap modals, fixed pagination all regressions

This commit is contained in:
johnnyq
2026-08-14 18:32:33 -04:00
parent 1c5803dc12
commit e2512b0f86
36 changed files with 282 additions and 134 deletions

View File

@@ -16,7 +16,7 @@ function fetchSSL(type)
}
//Send a GET request to post.php as post.php?certificate_fetch_parse_json_details=TRUE&domain=DOMAIN
jQuery.get(
itflowGet(
"ajax.php",
{certificate_fetch_parse_json_details: 'TRUE', domain: domain},
function(data) {

View File

@@ -1,6 +1,6 @@
function showOTPViaCredentialID(credential_id) {
// Send a GET request to ajax.php as ajax.php?get_totp_token_via_id=true&credential_id=ID
jQuery.get(
itflowGet(
"ajax.php", {
get_totp_token_via_id: 'true',
credential_id: credential_id

View File

@@ -1,6 +1,6 @@
function showPasswordViaCredentialID(button, credential_id) {
// Send a GET request to ajax.php as ajax.php?get_credential_via_id=true&credential_id=ID
jQuery.get(
itflowGet(
"ajax.php", {
get_credential_via_id: 'true',
credential_id: credential_id
@@ -21,7 +21,7 @@ function showPasswordViaCredentialID(button, credential_id) {
}
function copyPasswordViaCredentialID(button, credential_id) {
jQuery.get(
itflowGet(
"ajax.php", {
get_credential_via_id: 'true',
credential_id: credential_id

View File

@@ -1,6 +1,6 @@
function generatePassword(login_id) {
// Send a GET request to ajax.php as ajax.php?get_readable_pass=true
jQuery.get(
itflowGet(
"ajax.php", {
get_readable_pass: 'true'
},

View File

@@ -33,7 +33,7 @@ function generateShareLink() {
// Check values are provided
if (item_expires) {
// Send a GET request to ajax.php as ajax.php?share_generate_link=true....
jQuery.get(
itflowGet(
"ajax.php",
{share_generate_link: 'true', csrf_token: csrf_token, client_id: client_id, type: item_type, id: item_ref_id, note: item_note ,views: item_views, expires: item_expires, contact_email},
function(data) {

View File

@@ -7,7 +7,7 @@ function ticket_collision_detection() {
var ticket_id = document.getElementById("ticket_id").value;
//Send a GET request to ajax.php as ajax.php?ticket_add_view=true&ticket_id=NUMBER
jQuery.get(
itflowGet(
"ajax.php",
{ticket_add_view: 'true', ticket_id: ticket_id},
function(data) {
@@ -16,7 +16,7 @@ function ticket_collision_detection() {
);
//Send a GET request to ajax.php as ajax.php?ticket_query_views=true&ticket_id=NUMBER
jQuery.get(
itflowGet(
"ajax.php",
{ticket_query_views: 'true', ticket_id: ticket_id},
function(data) {

View File

@@ -164,7 +164,7 @@
}
// Send a GET request to ajax.php as ajax.php?get_client_contacts=true&client_id=NUM
jQuery.get(
itflowGet(
"ajax.php",
{get_client_contacts: 'true', client_id: client_id},
function(data) {
@@ -229,7 +229,7 @@
return;
}
jQuery.get(
itflowGet(
"ajax.php",
{get_client_assets: 'true', client_id: client_id},
function(data) {
@@ -279,7 +279,7 @@
return;
}
jQuery.get(
itflowGet(
"ajax.php",
{get_client_locations: 'true', client_id: client_id},
function(data) {
@@ -313,7 +313,7 @@
return;
}
jQuery.get(
itflowGet(
"ajax.php",
{get_client_vendors: 'true', client_id: client_id},
function(data) {
@@ -347,7 +347,7 @@
return;
}
jQuery.get(
itflowGet(
"ajax.php",
{get_client_projects: 'true', client_id: client_id},
function(data) {