Removed the use of nextmatchs->sql_limit() and replace it with db->limit()

This commit is contained in:
jengo 2001-01-30 00:13:25 +00:00
parent 81c7d0be94
commit 813d2e72ed

View File

@ -35,8 +35,7 @@
}
$phpgw->db->query("select account_id,account_firstname,account_lastname,account_lid "
. "from accounts $querymethod $ordermethod limit "
. $phpgw->nextmatchs->sql_limit($start));
. "from accounts $querymethod $ordermethod " . $phpgw->db->limit($start));
$i = 0;
while ($phpgw->db->next_record()) {