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

@@ -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) {