fix isset
All checks were successful
CI / testsuite (mysql, 8.2, ) (push) Successful in 5m47s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 5m51s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 5m7s
CI / testsuite (mysql, 8.4, ) (push) Successful in 11m31s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 5m13s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 10m46s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 7m40s
CI / Coding Standard & Static Analysis (push) Successful in 3m10s
All checks were successful
CI / testsuite (mysql, 8.2, ) (push) Successful in 5m47s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 5m51s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 5m7s
CI / testsuite (mysql, 8.4, ) (push) Successful in 11m31s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 5m13s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 10m46s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 7m40s
CI / Coding Standard & Static Analysis (push) Successful in 3m10s
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user