Skip to content

php deprecations plus a bug fix#8

Merged
robinsowell merged 1 commit intodevfrom
bugix/php-compat-issues
Mar 5, 2026
Merged

php deprecations plus a bug fix#8
robinsowell merged 1 commit intodevfrom
bugix/php-compat-issues

Conversation

@robinsowell
Copy link
Contributor

Bug:

    // make sure Super Admins are always allowed
    if (! in_array($allowed_groups, 1)) {

oops!
if (! in_array(1, $allowed_groups)) {

Bug:

        // make sure Super Admins are always allowed
        if (! in_array($allowed_groups, 1)) {
oops!
        if (! in_array(1, $allowed_groups)) {
@robinsowell robinsowell changed the base branch from main to dev March 5, 2026 17:34
@robinsowell robinsowell merged commit 08525f9 into dev Mar 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant