From b1c4b57d85308e10d490688030edeaa2eaa113f5 Mon Sep 17 00:00:00 2001 From: mark_story Date: Tue, 6 Sep 2011 08:00:08 -0400 Subject: [PATCH] Updating doc comment about find(list). Refs #1968 --- cake/libs/model/model.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cake/libs/model/model.php b/cake/libs/model/model.php index f25c0318e..f595b7529 100644 --- a/cake/libs/model/model.php +++ b/cake/libs/model/model.php @@ -2056,6 +2056,9 @@ class Model extends Overloadable { * - If three fields are specified, they are used (in order) for key, value and group. * - Otherwise, first and second fields are used for key and value. * + * Note: find(list) + database views have issues with MySQL 5.0. Try upgrading to MySQL 5.1 if you + * have issues with database views. + * * @param array $conditions SQL conditions array, or type of find operation (all / first / count / * neighbors / list / threaded) * @param mixed $fields Either a single string of a field name, or an array of field names, or