Closed GoogleCodeExporter closed 9 years ago
The problem is in the DooSmartModel::toCacheId() function. The cache id is
generated by serializing the $options array, but it does this by concatenating
every options value to a string.
The "param" option is an array, and arrays cast to strings as literally
"Array." So every set of different parameters will be coded to the same cache
unit.
Fix using php's built in serialize() function, which handles multidimensional
arrays correctly, attached as a diff from r466.
Original comment by dan.mens...@gmail.com
on 2 Aug 2010 at 4:26
Attachments:
Thanks for the patch. It has been applied and commit.
Original comment by darkredz
on 5 Aug 2010 at 7:58
Original issue reported on code.google.com by
towyn...@gmail.com
on 30 Jul 2010 at 9:34Attachments: