composer update + fix bug in matches url from array target
All checks were successful
CI / testsuite (pgsql, 8.2, ) (push) Successful in 5m22s
CI / testsuite (mysql, 8.2, ) (push) Successful in 5m39s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 4m56s
CI / testsuite (mysql, 8.4, ) (push) Successful in 13m45s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 4m43s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 11m57s
CI / Coding Standard & Static Analysis (push) Successful in 3m59s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 7m41s

This commit is contained in:
2026-04-29 22:05:05 -07:00
parent 0a41071f17
commit a70733db9d

View File

@@ -158,7 +158,7 @@ class ActiveLinkHelper extends Helper {
continue; continue;
} }
if (!isset($targetKey, $current) || $targetValue != $current[$targetKey]) { if (!isset($current[$targetKey]) || $targetValue != $current[$targetKey]) {
return false; return false;
} }
} }