This repository was archived by the owner on May 24, 2022. It is now read-only.

Description
Steps to reproduce:
- Insert records into collection where ISODate has microseconds value between .001 - 0.099. For example:
insert({"date": ISODate("2016-06-04T23:25:00.023")})
- View in RockMongo
Observed Behaviour:
- The value is displayed incorrectly, truncating the microseconds
"date": ISODate("2016-06-04T23:25:00.23Z")
The fix requires an change to use sprintf in the VarExporter.php file. A pull request will be provided with that includes the fix.