fix some non-fatal warnings

This commit is contained in:
Michael Becker 2025-07-15 06:58:31 -04:00
parent 2374310056
commit ac7561660f
3 changed files with 8 additions and 2 deletions

View File

@ -171,7 +171,10 @@
} }
else else
{ {
return $_SESSION["CurrentTenantName"]; if (isset($_SESSION["CurrentTenantName"]))
{
return $_SESSION["CurrentTenantName"];
}
} }
} }
return null; return null;

View File

@ -54,6 +54,9 @@
public $MaximumWidth; public $MaximumWidth;
public $MaximumHeight; public $MaximumHeight;
public $PhysicalFileName;
public $VirtualTagPath;
public $Visible; public $Visible;
/** /**

View File

@ -39,7 +39,7 @@
public $ClassTitle; public $ClassTitle;
public function __construct($id) public function __construct()
{ {
parent::__construct(); parent::__construct();