Home » Structures » Structures_DataGrid » Bug #7333
Wrong params for work with MDB2 datasource
Details
| Submitted | 2006-04-07 10:16 UTC |
|---|---|
| From | hire at ukr dot net |
| Assigned | wiesemann |
| Status | Closed |
| Package | Structures_DataGrid |
| PHP Version | Irrelevant |
| OS | N/A |
| Roadmaps | (Not assigned) |
Comments
[2006-04-07 10:16 UTC] hire at ukr dot net
Description:
------------
DataSource\MDB2.php
Line 165:
$result = $this->_db->extended->limitQuery($query, $offset, $limit);
change to
$result = $this->_db->extended->limitQuery($query, null, $limit, $offset);
(see http://dev.agoraproduction.com/mdb2/class_m_d_b2___extended.html#06ce5b2cfee208f4f72b3a37d0da20ad)
[2006-04-26 14:18 UTC] hire at ukr dot net
set limitQuery($query, null, $limit, $offset);
now (in last version from CVS) limitQuery($query, null, $offset, $limit);