Bug: One IP in Whitelist
-
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.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Bug: One IP in Whitelist’ is closed to new replies.