My Circular is unable to pull from Mongo. See screenshot of error.
dhilowitz opened this issue · 3 comments
dhilowitz commented
dhilowitz commented
The issue is related to this: https://jira.mongodb.org/browse/PHP-1051
We just need to surround $app['account']['users']
with array_values():
$m->circular->posts->remove(array(
'_id' => new MongoId($id),
'user._id' => array('$in' => array_values($app['account']['users']))
));
julien-c commented
@dhilowitz Do you mind opening a Pull request?