17488 Posts in 4473 Topics by 1978 members
| Go to End | ||
| Author | Topic: | 2517 Views |
-
Re: DataObject - Getting latest forum posts.

18 July 2008 at 12:49pm
Sorry, guess I should have said that I am now using the RecentPosts() code from ForumHolder.
function NewPosts($limit = null, $lastVisit = null,
$lastPostID = null) {
$filter = "";if($lastVisit)
$lastVisit = @date('Y-m-d H:i:s', $lastVisit);$lastPostID = (int)$lastPostID;
if($lastPostID > 0)
$filter .= "ID > $lastPostID";if($lastVisit) {
if($lastPostID > 0)
$filter .= " AND ";$filter .= "Created > '$lastVisit'";
}return DataObject::get("Post", $filter, "Created DESC", "", 8);
-
Re: DataObject - Getting latest forum posts.

18 July 2008 at 1:48pm
you might just like to comment out each line or whole chunks to see what is actually causing the error / see if you could get it to work with all the $filter stuff commented out. Cut out as much as you can to get it to work then work backwards by adding bits back and seeing when it breaks
| 2517 Views | ||
| Go to Top |


