Viewing 1 replies (of 1 total)
  • Hi all,

    here is a quick fix, because se_get_options() might be invoked from line 46 when se_meta is unset.

    
    --- config.org.php      2022-10-06 14:25:54.786298310 +0200
    +++ config.php  2022-10-06 14:26:03.366087069 +0200
    @@ -26,7 +26,7 @@
    
            $se_options = get_option('se_options', false);
    
    -       if(!$se_options || $se_meta['version'] !== SE_VERSION) {
    +       if(!$se_options || !isset($se_meta['version']) || $se_meta['version'] !== SE_VERSION) {
                    se_upgrade();
                    $se_meta = get_option('se_meta');
                    $se_options = get_option('se_options');
    

    Cheers!

Viewing 1 replies (of 1 total)
  • The topic ‘Trying to access array offset on value of type bool’ is closed to new replies.