You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this is throwing the above error. If I remove the $output variable to the getChunks call, all seems well. Not sure what $output is supposed to do, looks like it's been commented out lower down...
Thanks,
robin
The text was updated successfully, but these errors were encountered:
I haven't looked into the exact purpose of $output either, but you can fix the problem by making sure it's initialized. In /core/components/siblingnav/model/siblingnav/siblingnav.class.php right before the $this->getChunks call on line 98 add this line:
$output = isset($output) ? $output : array(); // if it's got a value, use that. Otherwise make it an empty array.
Hi, using v1.0.1 with following
this is throwing the above error. If I remove the $output variable to the getChunks call, all seems well. Not sure what $output is supposed to do, looks like it's been commented out lower down...
Thanks,
robin
The text was updated successfully, but these errors were encountered: