• I notice a mistake in the PHP code of bee-offline.php.
    Check at the line 146 and 147.
    Both variable were switched. You are reading :
    $role_config = (get_option($prefix . 'offline_set')) ? get_option($prefix . 'offline_set') : array();
    $construction = (get_option($prefix . 'role_conf')) ? get_option($prefix . 'role_conf') : array();

    Here is the fix : just switch value like this :
    $role_config = (get_option($prefix . 'role_conf')) ? get_option($prefix . 'role_conf') : array();
    $construction = (get_option($prefix . 'offline_set')) ? get_option($prefix . 'offline_set') : array();

    Hope it help somebody.

    https://www.ads-software.com/extend/plugins/bee-offline/

Viewing 1 replies (of 1 total)
  • Plugin Author rolies106

    (@rolies106)

    Hi Tommy,

    Thanks for resolving the problem, I think I’ll need to make major update to this plugin so it can work with latest WP. Sorry not updating this plugin for long time.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Bee Offline] Bug in release 1.4’ is closed to new replies.