PDO: Fix PHP 8.x issue on explode function.
This commit is contained in:
parent
2047921cde
commit
8ddbe07d3d
|
|
@ -286,7 +286,7 @@ if ($db_type == "odbc") {
|
||||||
if (!is_array($_SESSION['domains']) or !isset($_SESSION["domain_uuid"])) {
|
if (!is_array($_SESSION['domains']) or !isset($_SESSION["domain_uuid"])) {
|
||||||
|
|
||||||
//get the domain
|
//get the domain
|
||||||
$domain_array = explode(":", $_SERVER["HTTP_HOST"]);
|
$domain_array = explode(":", $_SERVER["HTTP_HOST"] ?? '');
|
||||||
|
|
||||||
//get the domains from the database
|
//get the domains from the database
|
||||||
$sql = "select * from v_domains";
|
$sql = "select * from v_domains";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue