BIG FIX: When accessing ticket, invoice, recurring invoice or quote details while in the client section of ITFlow keep the Client Side Nav instead of redirecting back to the Main Nav. This caused much confusion in the past. This will improve naviagtion in those areas greatly

This commit is contained in:
johnnyq
2024-10-31 15:40:02 -04:00
parent 5a6cf0ccac
commit 4e72925c21
9 changed files with 35 additions and 15 deletions

View File

@@ -1,6 +1,11 @@
<?php
require_once "inc_all.php";
// If client_id is in URI then show client Side Bar and client header
if (isset($_GET['client_id'])) {
require_once "inc_all_client.php";
} else {
require_once "inc_all.php";
}
if (isset($_GET['recurring_id'])) {