Pārlūkot izejas kodu

replace $_SESSION['domains'][$domain_uuid]['domain'] with $_SESSION['domains'][$domain_uuid]['domain_name']

Mark Crane 13 gadi atpakaļ
vecāks
revīzija
a825820313

+ 1 - 1
tickets/v_profile_delete.php

@@ -38,7 +38,7 @@ else {
 
 
 require_once "includes/header.php";
 require_once "includes/header.php";
 
 
-$domain_name = $_SESSION['domains'][$domain_uuid]['domain'];
+$domain_name = $_SESSION['domains'][$domain_uuid]['domain_name'];
 
 
 $profile_id = $_REQUEST['id'];
 $profile_id = $_REQUEST['id'];
 
 

+ 1 - 1
tickets/v_ticket_create.php

@@ -40,7 +40,7 @@ else {
 
 
 require_once "includes/header.php";
 require_once "includes/header.php";
 
 
-$domain_name = $_SESSION['domains'][$domain_uuid]['domain'];
+$domain_name = $_SESSION['domains'][$domain_uuid]['domain_name'];
 
 
 //get a list of Available Queues
 //get a list of Available Queues
 $sql = "";
 $sql = "";

+ 1 - 1
tickets/v_ticket_update.php

@@ -40,7 +40,7 @@ else {
 
 
 require_once "includes/header.php";
 require_once "includes/header.php";
 
 
-$domain_name = $_SESSION['domains'][$domain_uuid]['domain'];
+$domain_name = $_SESSION['domains'][$domain_uuid]['domain_name'];
 
 
 // Check to see if we're an admin and if we are set the $isadmin to true for use in the template and sql query building
 // Check to see if we're an admin and if we are set the $isadmin to true for use in the template and sql query building
 if (if_group("superadmin") || if_group("admin")){
 if (if_group("superadmin") || if_group("admin")){