Merge pull request #5761 from greenbea/patch-20

fix comparison operator
This commit is contained in:
FusionPBX 2021-02-09 16:53:42 -07:00 committed by GitHub
commit 5b83dc8ab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@
if (is_array($array["app_log"]["application"])) {
foreach ($array["app_log"]["application"] as $key=>$row) {
//single app
if ($key == "@attributes") {
if ($key === "@attributes") {
$app_name = $row["app_name"];
$app_data = urldecode($row["app_data"]);
}