DOCS: fixed 3.2.0 changelog DataList code sample

This commit is contained in:
Christopher Darling 2015-12-23 13:13:32 +00:00
parent 751264fd6a
commit ef4a75ad43

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