Forum Replies Created

Viewing 1 replies (of 1 total)
  • I also have this issue.
    I think this is because the array was unset.

    If fixed this by adding
    “$this->formatted_favorites[$site][‘posts’][$favorite] = array();” before line 73:

    foreach ( $site_favorites[‘posts’] as $key => $favorite ){
    unset($this->formatted_favorites[$site][‘posts’][$key]);
    $this->formatted_favorites[$site][‘posts’][$favorite] = array();
    $this->formatted_favorites[$site][‘posts’][$favorite][‘post_id’] = $favorite;
    }

Viewing 1 replies (of 1 total)