From 68a367bea7f57f19ac6db5c5e96348bfa4badeef Mon Sep 17 00:00:00 2001 From: bergware Date: Sat, 14 Oct 2023 01:39:26 +0200 Subject: [PATCH] libvirt_helpers: fix PHP8 error --- emhttp/plugins/dynamix.vm.manager/include/libvirt_helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix.vm.manager/include/libvirt_helpers.php b/emhttp/plugins/dynamix.vm.manager/include/libvirt_helpers.php index 9575152c6..610f164f0 100644 --- a/emhttp/plugins/dynamix.vm.manager/include/libvirt_helpers.php +++ b/emhttp/plugins/dynamix.vm.manager/include/libvirt_helpers.php @@ -779,7 +779,7 @@ private static $encoding = 'UTF-8'; $boolBlacklisted = true; } - $overrideCheck = "${arrMatch['typeid']}:${arrMatch['productid']}" ; + $overrideCheck = "{$arrMatch['typeid']}:{$arrMatch['productid']}" ; if (in_array($overrideCheck,$arrWhiteListOverride) ) $boolBlacklisted = false; $strClass = 'other';