• Resolved 7o7marketing

    (@7o7marketing)


    There is a bug in mojo-construction.class.php on Line 66-68:

    if ( ! is_array( $array ) ) {
        $array = array();
    }

    should be:

    if ( ! is_array( $array ) ) {
        $array = array($array);
    }

    Right now having only one IP in Whitelist is not working, because get_option(‘underConstructionIPWhitelist’) returns a string.

    • This topic was modified 7 years, 10 months ago by 7o7marketing.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Bug: One IP in Whitelist’ is closed to new replies.