Merge pull request #4874 from christopherdarling/patch-7

DOCS: fixed 3.2.0 changelog DataList code sample
This commit is contained in:
Damian Mooyman 2016-01-05 10:10:53 +13:00
commit df297b28b4

View File

@ -597,8 +597,8 @@ After:
$things = MyObject::get()->where(array('"MyObject"."Name" = ?' => $name));
$list = DataList::create('Banner')->where(array(
'"ParentID" IS NOT NULL',
'"Title" = ?', $title
);
'"Title" = ?' => $title,
));
#### 3. Interaction with `DataList::sql()`, `DataQuery::sql()`, `SQLQuery::sql()`, or `SQLQuery::getJoins()` methods