BlackMage
unread,Jan 27, 2012, 11:48:24 PM1/27/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MongoLantern
Code review that could lead to a possible problem. In the method
MongoLanternDocument::setField, there is the assigning of a variable
using $this->fieldsObj[$fieldObj->field] = $fieldObj;.
If a user assigns the values in a way such as:
$docObj->setField(MongoLanternField::Keyword('email', $doc['email']))
$docObj->setField(MongoLanternField::Text('email', $doc['email']))
$docObj->setField(MongoLanternField::UnIndexed('email',
$doc['email']))
The would end up overwritting.