  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: database.php 410 2006-01-26 09:17:09Z hpdl $ |
| |
| 3 | + | $Id: database.php 448 2006-02-21 06:27:28Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
|
|
 |
… |
|
578 | 578 | | $this->batch_rows = $maximum_rows; |
| |
579 | 579 | | $this->batch_select_field = (empty($select_field) ? '*' : $select_field); |
| |
580 | 580 | | |
  |
581 | | - | $from = ($this->batch_number * $maximum_rows) - $maximum_rows; |
| |
| 581 | + | $from = max(($this->batch_number * $maximum_rows) - $maximum_rows, 0); |
  |
582 | 582 | | |
| |
583 | 583 | | $this->sql_query = $this->db_class->setBatchLimit($this->sql_query, $from, $maximum_rows); |
| |
584 | 584 | | |