Home » HTML » Pager » Bug #10244
function Pager_Wrapper_MDB2 don't work
Details
| Submitted | 2007-03-02 15:51 UTC |
|---|---|
| From | ksku at php dot net |
| Assigned | quipo |
| Status | Bogus |
| Package | Pager |
| PHP Version | 5.2.0 |
| OS | WINXP |
| Roadmaps | (Not assigned) |
Comments
[2007-03-02 15:51 UTC] ksku at php dot net
Description:
------------
Common.php
online 1431
if (isset($_REQUEST[$this->_urlVar]) && empty($options['currentPage'])) {
$this->_currentPage = (int)$_REQUEST[$this->_urlVar];
}
should be following:
if (isset($_GET[$this->_urlVar]) && empty($options['currentPage'])) {
$this->_currentPage = (int)$_GET[$this->_urlVar];
}
or getCurrentPageID() will not work;