fix isset
CI / testsuite (mysql, 8.2, ) (push) Successful in 4m18s
CI / testsuite (mysql, 8.4, ) (push) Successful in 6m35s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 4m21s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 6m28s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 4m20s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 4m20s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 6m20s
CI / Coding Standard & Static Analysis (push) Failing after 2m35s

This commit is contained in:
bs
2026-04-11 20:08:46 -07:00
parent 2add008af3
commit bced090f36
+1 -1
View File
@@ -158,7 +158,7 @@ class ActiveLinkHelper extends Helper {
continue;
}
if (!isset($targetKey, $current) || $targetValue != $current[$targetKey]) {
if (!isset($current[$targetKey]) || $targetValue != $current[$targetKey]) {
return false;
}
}