Fix for joins code block

This commit is contained in:
Adam Judd 2014-07-09 22:31:41 +09:30
parent eed2293f31
commit 171eb42c9e

View File

@ -316,7 +316,7 @@ that does not exist in a Group.
You can limit the amount of records returned in a DataList by using the
`limit()` method.
:::php
// Returning the first 5 members, sorted alphabetically by Surname
$members = Member::get()->sort('Surname')->limit(5);