function getNewest( $limit = 50 ) {
$data = $this->find('all',
array(
'order' => $this->name .'.id DESC',
'limit' => $limit)
);
return $data;
}
Jan 24
2010
2010
function getNewest( $limit = 50 ) {
$data = $this->find('all',
array(
'order' => $this->name .'.id DESC',
'limit' => $limit)
);
return $data;
}