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
In some instances this error is cropping up when trying to post comments to facebook
Warning: array_shift() expects parameter 1 to be array, null given in (My server's location).com/html/wp-content/plugins/social/lib/social/service/facebook.php on line 114
This looks to be caused by the php count() function returning 1 on un_countable_ values, so since we are not sure of the exact type, we need to add a is_array() check to the condition.
In some instances this error is cropping up when trying to post comments to facebook
This looks to be caused by the php
count()
function returning 1 on un_countable_ values, so since we are not sure of the exact type, we need to add ais_array()
check to the condition.http://us2.php.net/manual/en/function.count.php
0b8344d
Currently tracking this fix in feature/array-shift-error
The text was updated successfully, but these errors were encountered: