pass through $idField and $createdField in Notice queries

This commit is contained in:
Evan Prodromou 2010-12-27 22:35:57 -08:00
parent 1996545947
commit c458bafaa1
1 changed files with 2 additions and 2 deletions

View File

@ -2033,7 +2033,7 @@ class Notice extends Memcached_DataObject
*/
public static function addWhereSinceId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
{
$since = self::whereSinceId($id);
$since = self::whereSinceId($id, $idField, $createdField);
if ($since) {
$obj->whereAdd($since);
}
@ -2072,7 +2072,7 @@ class Notice extends Memcached_DataObject
*/
public static function addWhereMaxId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
{
$max = self::whereMaxId($id);
$max = self::whereMaxId($id, $idField, $createdField);
if ($max) {
$obj->whereAdd($max);
}